Skip to content

Commit 496eced

Browse files
committed
Fix workflow
1 parent aad26e5 commit 496eced

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/tests.yaml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,12 @@ jobs:
2121
os: [ubuntu-20.04, macos-latest, windows-latest]
2222
steps:
2323
- uses: actions/checkout@master
24-
- name: Install
25-
uses: abatilo/[email protected]
24+
- uses: actions/setup-python@v2
2625
with:
27-
python_version: ${{ matrix.python-version }}
28-
poetry_version: 1.1
29-
args: install
30-
- name: Run matrix of tests with Tox
26+
python-version: ${{ matrix.python-version }}
27+
- name: Ensure poetry
3128
uses: abatilo/[email protected]
32-
with:
33-
python_version: ${{ matrix.python-version }}
34-
poetry_version: 1.1
35-
args: run tox
29+
- name: Install dependencies
30+
run: poetry install
31+
- name: Run matrix of tests with Tox
32+
run: poetry run tox

0 commit comments

Comments
 (0)