We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c5292bd + 73e3294 commit dbde348Copy full SHA for dbde348
1 file changed
.github/workflows/main.yml
@@ -30,3 +30,25 @@ jobs:
30
31
- name: Flake8 Check
32
run: flake8 .
33
+
34
+ tests:
35
+ name: Pytest
36
+ runs-on: ubuntu-latest
37
38
+ steps:
39
+ - name: Checkout code
40
+ uses: actions/checkout@v4
41
42
+ - name: Setup Python
43
+ uses: actions/setup-python@v4
44
+ with:
45
+ python-version: "3.11"
46
47
+ - name: Upgrade pip
48
+ run: python -m pip install --upgrade pip
49
50
+ - name: Install Dependencies
51
+ run: pip install -r requirements.txt
52
53
+ - name: Run Pytest
54
+ run: pytest -v
0 commit comments