We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd27111 commit 62585abCopy full SHA for 62585ab
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+name: Unittests
2
+on:
3
+ push:
4
+
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Set up Python
11
+ uses: actions/setup-python@v3
12
+ with:
13
+ python-version: '3.x'
14
+ - name: Install dependencies
15
+ run: |
16
+ python -m pip install --upgrade pip
17
+ pip install -r requirements.txt
18
+ - name: Run unittests
19
+ run: python3 -m unittest discover -s tests -p "*_test.py"
0 commit comments