We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 183efc9 commit f7be048Copy full SHA for f7be048
1 file changed
.github/workflows/pytest.yml
@@ -0,0 +1,31 @@
1
+# Run all unit tests
2
+
3
+name: Pytest
4
5
+on:
6
+ push:
7
+ branches: [ "main" ]
8
+ pull_request:
9
10
+ workflow_dispatch:
11
12
+jobs:
13
+ verify:
14
+ name: Running unit tests
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - name: Set up Python 3.11
19
+ uses: actions/setup-python@v3
20
+ with:
21
+ python-version: "3.11"
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install -r requirements.txt
26
+ - name: Install Pytest
27
28
+ python -m pip install pytest
29
+ - name: Running Pytest
30
31
+ pytest ./test/
0 commit comments