We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e604356 commit b398eafCopy full SHA for b398eaf
.github/worflows/pytest-all.yml
@@ -0,0 +1,33 @@
1
+name: pytest-all
2
+
3
+on:
4
+ # Trigger the workflow on push or pull request,
5
+ # but only for the main branch
6
+ push:
7
+ branches:
8
+ - main
9
+ pull_request:
10
11
12
+ workflow_dispatch:
13
14
+jobs:
15
+ test:
16
+ runs-on: ubuntu-latest
17
18
+ strategy:
19
+ matrix:
20
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
21
22
+ steps:
23
+ - uses: actions/checkout@v4
24
25
+ - name: Install Python ${{ matrix.python-version }}
26
+ uses: actions/setup-python@v5
27
+ with:
28
+ python-version: ${{ matrix.python-version }}
29
+ cache: "pip"
30
31
+ - name: Run tests with pytest
32
+ run: pytest -v -s
33
0 commit comments