Skip to content

Commit 5038d87

Browse files
committed
whitespace cleanup, update psql version, use pipenv sync
1 parent d6ea249 commit 5038d87

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff 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:
@@ -46,7 +46,7 @@ jobs:
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
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Install dependencies
7676
run: |
77-
pipenv install --dev
77+
pipenv sync --dev
7878
7979
- name: Compile assets
8080
run: |

0 commit comments

Comments
 (0)