File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 18
18
with:
19
19
username: ${{ secrets.DOCKERHUB_USERNAME }}
20
20
password: ${{ secrets.DOCKERHUB_TOKEN }}
21
- - run : pip install . flake8 pytest pytest-cov
21
+ - run: pip install . flake8 pytest pytest-cov pytest-flake8
22
22
- run: make images
23
23
- run: make push
24
24
if: ${{ github.event_name == 'tags' }}
Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
push :
5
5
schedule :
6
- - cron : ' 11 21 * * *'
6
+ - cron : " 11 21 * * *"
7
7
jobs :
8
8
pytest :
9
9
runs-on : ubuntu-latest
@@ -14,16 +14,15 @@ jobs:
14
14
- 3.8
15
15
- 3.9
16
16
steps :
17
- - uses : actions/checkout@v1
18
- - uses : actions/setup-python@v1
17
+ - uses : actions/checkout@v2
18
+ - uses : actions/setup-python@v2
19
19
with :
20
20
python-version : ${{ matrix.python }}
21
21
- uses : amancevice/setup-code-climate@v0
22
22
with :
23
23
cc_test_reporter_id : ${{ secrets.CC_TEST_REPORTER_ID }}
24
24
- run : cc-test-reporter before-build
25
- - run : pip install . flake8 pytest pytest-cov
26
- - run : flake8
25
+ - run : pip install . flake8 pytest pytest-cov pytest-flake8
27
26
- run : pytest
28
27
- run : cc-test-reporter after-build
29
28
if : ${{ github.event_name != 'pull_request' }}
You can’t perform that action at this time.
0 commit comments