Skip to content

Commit 1b70980

Browse files
authored
Merge pull request #18 from securenative/SN-1556-align-sdk
Fix github action tests
2 parents 50b368a + 0c7cb39 commit 1b70980

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,19 @@ jobs:
2323
color: warning
2424

2525
- name: Set up Python
26-
uses: actions/setup-python@v2
27-
env:
28-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
26+
- uses: actions/checkout@v2
2927
with:
3028
python-version: '3.x'
29+
- name: Install dependencies
3130
run: |
3231
python -m pip install --upgrade pip
3332
pip install -r requirements.txt
33+
- name: Test with pytest
34+
env:
35+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
36+
with:
37+
python-version: '3.x'
38+
run: |
3439
py.test --cov-report=xml --cov=securenative tests/
3540
3641
- name: Notify slack success

0 commit comments

Comments
 (0)