We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88de08b commit 41cb845Copy full SHA for 41cb845
.github/workflows/tests.yml
@@ -6,13 +6,22 @@ jobs:
6
test:
7
runs-on: ubuntu-latest
8
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ python: ['3.10', 3.11, 3.12, pypy-3.10]
13
+
14
steps:
- - uses: actions/checkout@v3
- - run: python3 util/install_deps.py
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: ${{ matrix.python }}
19
+ - run: pip install
20
+ pip==24.0 setuptools==69.1.1 wheel==0.42.0 pytest==8.0.2
21
+ - run: python util/install_deps.py
22
- run: pip install .
- - uses: actions/cache@v3
23
+ - uses: actions/cache@v4
24
with:
25
key: cache-dir
26
path: /home/runner/.cache/simalq
- - run: pip install pytest
27
- run: pytest tests
0 commit comments