We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c81591 commit f60f94bCopy full SHA for f60f94b
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Test
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ fail-fast: false
10
+ max-parallel: 5
11
+ matrix:
12
+ python-version: ['3.10', '3.11', '3.12', '3.13']
13
+ os: [ ubuntu-latest, macos-latest ]
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v3
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: |
22
+ pip install --upgrade pip poetry
23
+ poetry install --with dev
24
+ - name: PyTest testrunner
25
26
+ poetry run pytest
0 commit comments