We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec8a042 commit cee5bd7Copy full SHA for cee5bd7
.github/workflows/python-ci.yml
@@ -9,10 +9,10 @@ jobs:
9
steps:
10
- uses: actions/checkout@v4
11
12
- - name: Set up Python 3.12
+ - name: Set up Python
13
uses: actions/setup-python@v5
14
with:
15
- python-version: '3.12'
+ python-version: '3.x'
16
17
- name: Install dependencies
18
if: always()
@@ -27,17 +27,17 @@ jobs:
27
28
run: ruff check $(git ls-files *.py)
29
30
- test:
+ test-python:
31
needs: code_quality
32
runs-on: ubuntu-latest
33
34
35
- uses: actions/checkout@v3
36
37
38
uses: actions/setup-python@v3
39
40
41
42
43
0 commit comments