We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11c3b41 commit 8f843b9Copy full SHA for 8f843b9
.github/workflows/python-app.yml
@@ -10,12 +10,12 @@ on:
10
branches: [ main ]
11
12
jobs:
13
- build:
+ unit-tests:
14
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
19
- name: Set up Python 3.9
20
uses: actions/setup-python@v2
21
with:
@@ -28,9 +28,6 @@ jobs:
28
pip install coverage
29
pip install black==22.3.0
30
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
- - name: Check formatting with black
32
- run: |
33
- black --check .
34
- name: Test with pytest and check coverage
35
run: |
36
coverage run -m --source=src pytest -v tests/unit_test.py
0 commit comments