File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -11,28 +11,28 @@ jobs:
1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v2
14-
14+
1515 - name : Set up Python 3.7
1616 uses : actions/setup-python@v1
1717 with :
1818 python-version : 3.7
19-
19+
2020 - name : Install pipenv
2121 uses : dschep/install-pipenv-action@v1
2222
2323 - name : Install dependencies
2424 run : |
25- pipenv install --dev
26-
25+ pipenv sync --dev
26+
2727 - name : Run Black check
2828 run : |
29- pipenv run black --check ./
30-
29+ pipenv run black --check .
30+
3131 - name : Run Flake8 check
3232 run : |
3333 mkdir test-reports
34- pipenv run flake8 ./ --output-file test-reports/flake8
35-
34+ pipenv run flake8 . --output-file test-reports/flake8
35+
3636 - name : Upload flake test results
3737 uses : actions/upload-artifact@master
3838 with :
4646
4747 services :
4848 postgres :
49- image : postgres:12.3 -alpine
49+ image : postgres:12.5 -alpine
5050 env :
5151 POSTGRES_USER : postgres
5252 POSTGRES_PASSWORD : postgres
7474
7575 - name : Install dependencies
7676 run : |
77- pipenv install --dev
77+ pipenv sync --dev
7878
7979 - name : Compile assets
8080 run : |
You can’t perform that action at this time.
0 commit comments