We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac02b5 commit 404d59fCopy full SHA for 404d59f
.github/workflows/lint.yaml
@@ -26,8 +26,13 @@ jobs:
26
needs: setup
27
runs-on: ubuntu-latest
28
steps:
29
- - name: Check Python version
30
- run: python --version
+ - name: Checkout code
+ uses: actions/checkout@v4
31
+
32
+ - name: Set up Python
33
+ uses: actions/setup-python@v5
34
+ with:
35
+ python-version: "3.12"
36
37
- name: Run lint checks
38
id: lint
@@ -58,6 +63,14 @@ jobs:
58
63
59
64
60
65
66
67
68
69
70
71
72
73
61
74
- name: Run tests on all Python versions
62
75
id: test
76
run: uvx nox -s test_all
0 commit comments