We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 542dc38 commit a7cc753Copy full SHA for a7cc753
1 file changed
.github/workflows/unittest.yml
@@ -0,0 +1,25 @@
1
+name: Testing
2
+on:
3
+ push:
4
+ branches: [ "master" ]
5
+ pull-request:
6
7
+permissions:
8
+ contents: read
9
+jobs:
10
+ Unit tests:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Python 3.10 setup
15
+ uses: actions/setup-python@v3
16
+ with:
17
+ python-version: "3.10"
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install .
22
+
23
+ - name: Unit testing
24
25
+ pytest -v
0 commit comments