Skip to content

Commit cee5bd7

Browse files
committed
Minor tidying of the python CI workflow file.
1 parent ec8a042 commit cee5bd7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/python-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111

12-
- name: Set up Python 3.12
12+
- name: Set up Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.12'
15+
python-version: '3.x'
1616

1717
- name: Install dependencies
1818
if: always()
@@ -27,17 +27,17 @@ jobs:
2727
if: always()
2828
run: ruff check $(git ls-files *.py)
2929

30-
test:
30+
test-python:
3131
needs: code_quality
3232
runs-on: ubuntu-latest
3333

3434
steps:
3535
- uses: actions/checkout@v3
3636

37-
- name: Set up Python 3.12
37+
- name: Set up Python
3838
uses: actions/setup-python@v3
3939
with:
40-
python-version: '3.12'
40+
python-version: '3.x'
4141

4242
- name: Install dependencies
4343
if: always()

0 commit comments

Comments
 (0)