Skip to content

Commit 35fdc64

Browse files
committed
Bump action & tool versions
1 parent 64a6653 commit 35fdc64

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,30 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- uses: actions/setup-python@v1
10+
- uses: actions/setup-python@v2
1111
with:
1212
python-version: 3.8
1313
- uses: pre-commit/[email protected]
1414
pytest:
1515
name: pytest
1616
runs-on: ubuntu-latest
1717
strategy:
18+
fail-fast: false
1819
matrix:
19-
python-version: [3.6, 3.7, 3.8, 3.9]
20+
python-version: [3.6, 3.7, 3.8, 3.9, 'pypy-3.6', 'pypy-3.7']
21+
poetry-version: [1.0, 1.1.6]
22+
os: [ubuntu-20.04, macos-latest, windows-latest]
2023
steps:
2124
- uses: actions/checkout@master
2225
- name: Install
23-
uses: abatilo/actions-poetry@v1.5.0
26+
uses: abatilo/actions-poetry@v2
2427
with:
2528
python_version: ${{ matrix.python-version }}
26-
poetry_version: 1.0
29+
poetry_version: ${{ matrix.poetry-version }}
2730
args: install
2831
- name: Run matrix of tests with Tox
29-
uses: abatilo/actions-poetry@v1.5.0
32+
uses: abatilo/actions-poetry@v2
3033
with:
3134
python_version: ${{ matrix.python-version }}
32-
poetry_version: 1.0
35+
poetry_version: ${{ matrix.poetry-version }}
3336
args: run tox

0 commit comments

Comments
 (0)