Skip to content

Commit a528458

Browse files
committed
Move CI from Travis to GitHub Actions
1 parent 66e53cf commit a528458

File tree

3 files changed

+23
-12
lines changed

3 files changed

+23
-12
lines changed

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: tests
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
python:
9+
- '3.9'
10+
- '3.10'
11+
- '3.11'
12+
- '3.12'
13+
- '3.13'
14+
- pypy3.10
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: ${{ matrix.python }}
20+
- run: pip install Markdown
21+
- run: python ./test.py

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![Travis CI status](https://api.travis-ci.org/mitya57/python-markdown-math.svg)][Travis]
1+
[![Build Status](https://github.com/mitya57/python-markdown-math/actions/workflows/tox.yml/badge.svg)][Actions]
22

3-
[Travis]: https://travis-ci.org/mitya57/python-markdown-math
3+
[Actions]: https://github.com/mitya57/python-markdown-math/actions
44

55
Math extension for Python-Markdown
66
==================================

0 commit comments

Comments
 (0)