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.
2 parents 4362348 + 0ef6499 commit 7b24b5aCopy full SHA for 7b24b5a
.github/workflows/unittests.yaml
@@ -0,0 +1,16 @@
1
+name: Continuous Integration
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v2
8
+ - name: Set up Python
9
+ uses: actions/setup-python@v2
10
+ with:
11
+ python-version: 3.12.0
12
+ architecture: x64
13
+ - name: Install dependencies
14
+ run: pip install -r requirements.txt
15
+ - name: Run Tests
16
+ run: python -m pytest
0 commit comments