There was an error while loading. Please reload this page.
1 parent 5919d13 commit a1fba0bCopy full SHA for a1fba0b
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: Python CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python:
12
+ - {version: "3.9", toxenv: "py39"}
13
+ - {version: "3.10", toxenv: "py310"}
14
+ - {version: "3.11", toxenv: "py311"}
15
+ - {version: "3.12", toxenv: "py312"}
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Set up Python ${{ matrix.python.version }}
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: ${{ matrix.python.version }}
23
+ - name: Install dependencies
24
+ run: python -m pip install tox
25
+ - name: Run tests
26
+ run: tox -e "${{ matrix.python.toxenv }}"
.travis.yml
0 commit comments