We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634cde1 commit 19ca8c2Copy full SHA for 19ca8c2
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,22 @@
1
+name: CI
2
+on: [push]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ pyversion: ["3.9", "3.10", "3.11"]
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Set up Python
12
+ uses: actions/setup-python@v4
13
+ with:
14
+ python-version: "${{ matrix.version }}"
15
+ - name: Display Python version
16
+ run: python -c "import sys; print(sys.version)"
17
+ - name: Install tox
18
+ run: pip install tox
19
+ - name: Run tests on Python ${{ matrix.version }}
20
+ run: tox
21
+ env:
22
+ TOXENV: "py${{ matrix.version }}"
0 commit comments