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 adffb11 commit 35994cbCopy full SHA for 35994cb
.github/workflows/tests.yaml
@@ -0,0 +1,33 @@
1
+name: Run Unit Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ workflow_dispatch:
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ run-python-test:
14
+ name: Unit tests
15
16
+ runs-on: ubuntu-latest
17
+ strategy:
18
+ matrix:
19
+ python-version: [3.10.14]
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - name: set up Python
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: ${{ matrix.python-version }}
27
28
+ - name: install python dependencies
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ pip install '.[dev]'
32
+ - name: run tests
33
+ run: python -m pytest tests/
0 commit comments