We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad5a248 commit 0c7cb39Copy full SHA for 0c7cb39
.github/workflows/ci.yml
@@ -23,14 +23,19 @@ jobs:
23
color: warning
24
25
- name: Set up Python
26
- uses: actions/setup-python@v2
27
- env:
28
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+ - uses: actions/checkout@v2
29
with:
30
python-version: '3.x'
+ - name: Install dependencies
31
run: |
32
python -m pip install --upgrade pip
33
pip install -r requirements.txt
+ - name: Test with pytest
34
+ env:
35
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
36
+ with:
37
+ python-version: '3.x'
38
+ run: |
39
py.test --cov-report=xml --cov=securenative tests/
40
41
- name: Notify slack success
0 commit comments