Skip to content

Commit fc46b06

Browse files
committed
Update actions
1 parent cbadf74 commit fc46b06

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ on:
88

99
jobs:
1010
tests:
11-
name: Python ${{ matrix.python-version }}, USE_CUSTOM_SITE = ${{ matrix.use-custom-site }}
11+
name:
12+
Python ${{ matrix.python-version }}, USE_CUSTOM_SITE = ${{ matrix.use-custom-site
13+
}}
1214
runs-on: ubuntu-latest
1315
strategy:
1416
fail-fast: false
@@ -22,15 +24,17 @@ jobs:
2224
- true
2325

2426
steps:
25-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2628
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v4
2830
with:
2931
python-version: ${{ matrix.python-version }}
3032
- name: Install dependencies
3133
run: |
3234
python -m pip install --upgrade pip wheel setuptools tox
33-
- name: Run tox targets for ${{ matrix.python-version }} and custom site model = ${{ matrix.use-custom-site }}
35+
- name:
36+
Run tox targets for ${{ matrix.python-version }} and custom site model
37+
= ${{ matrix.use-custom-site }}
3438
run: |
3539
ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}")
3640
USE_CUSTOM_SITE='${{ matrix.use-custom-site}}' TOXENV=$(tox --listenvs | grep "^py$ENV_PREFIX" | tr '\n' ',') python -m tox

0 commit comments

Comments
 (0)