We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb21a9 commit 078cd9bCopy full SHA for 078cd9b
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v3
13
14
+ - name: Set up Python
15
+ uses: actions/setup-python@v4
16
+ with:
17
+ python-version: '3.10'
18
19
+ - name: Install dependencies
20
+ run: pip install -r requirements.txt
21
22
+ - name: Run tests
23
+ run: pytest -v
0 commit comments