Skip to content

Commit 9f265c9

Browse files
committed
upgrade job
1 parent 5516b38 commit 9f265c9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/run_code_checks.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ on:
77
- 'releases/**'
88

99
jobs:
10-
pre-commit-run-all-files:
11-
name: Run code checks
10+
code-checks:
1211
runs-on: ubuntu-20.04
13-
env:
14-
PYTHON_VERSION: 3.8
12+
strategy:
13+
matrix:
14+
python-version: ["3.8"]
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Setup Python
21-
uses: actions/setup-python@v2.2.1
21+
uses: actions/setup-python@v4
2222
with:
23-
python-version: ${{ env.PYTHON_VERSION }}
23+
python-version: ${{ matrix.python-version }}
2424

2525
- name: Install tools
2626
run: pip install -r dev-requirements.txt

0 commit comments

Comments
 (0)