We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d07df08 commit 8ec762dCopy full SHA for 8ec762d
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ python-version: ["3.10", "3.11", "3.12"]
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - name: Set up Python ${{ matrix.python-version }}
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
+ cache: pip
25
+ cache-dependency-path: requirements-dev.txt
26
27
+ - name: Install dependencies
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install -r requirements-dev.txt
31
32
+ - name: Run tests
33
+ run: pytest -q
0 commit comments