We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a1d81b commit ad5a248Copy full SHA for ad5a248
.github/workflows/ci.yml
@@ -22,8 +22,16 @@ jobs:
22
status: STARTING
23
color: warning
24
25
- - name: Run Tests
26
- run: py.test --cov-report=xml --cov=securenative tests/
+ - name: Set up Python
+ uses: actions/setup-python@v2
27
+ env:
28
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
29
+ with:
30
+ python-version: '3.x'
31
+ run: |
32
+ python -m pip install --upgrade pip
33
+ pip install -r requirements.txt
34
+ py.test --cov-report=xml --cov=securenative tests/
35
36
- name: Notify slack success
37
if: success()
0 commit comments