We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a357f13 commit 250a5ffCopy full SHA for 250a5ff
1 file changed
.github/workflows/python-test.yml
@@ -0,0 +1,24 @@
1
+name: Python Unit Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v3
12
13
+ - name: Set up Python
14
+ uses: actions/setup-python@v4
15
+ with:
16
+ python-version: "3.11"
17
18
+ - name: Install dependencies
19
+ run: |
20
+ pip install -r requirements.txt
21
22
+ - name: Run tests
23
24
+ python -m unittest discover tests
0 commit comments