Skip to content

Commit f32e27a

Browse files
committed
Update ci workflow
1 parent d86f697 commit f32e27a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
- uses: actions/setup-python@v1
1515
with:
1616
python-version: 3.7
17-
- uses: dschep/install-pipenv-action@v1
17+
- uses: Gr1N/setup-poetry@v2
1818
- name: Install dependencies
1919
run: |
20-
pipenv install --dev --python ${pythonLocation}/python
20+
poetry install --dev --python ${pythonLocation}/python
2121
- name: Run black
2222
run: |
23-
pipenv run black . --check --diff --exclude tests/output_
23+
poetry run black . --check --diff --exclude tests/output_
2424
2525
run-tests:
2626
runs-on: ubuntu-latest
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/setup-python@v1
3737
with:
3838
python-version: ${{ matrix.python-version }}
39-
- uses: dschep/install-pipenv-action@v1
39+
- uses: Gr1N/setup-poetry@v2
4040
- name: Install dependencies
4141
run: |
4242
sudo apt install protobuf-compiler libprotobuf-dev
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/setup-python@v1
5757
with:
5858
python-version: 3.7
59-
- uses: dschep/install-pipenv-action@v1
59+
- uses: Gr1N/setup-poetry@v2
6060
- name: Install dependencies
6161
run: |
6262
sudo apt install protobuf-compiler libprotobuf-dev

0 commit comments

Comments
 (0)