File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 26
26
workflow_dispatch :
27
27
28
28
jobs :
29
- lint :
30
- runs-on : ubuntu-latest
31
- steps :
32
- - name : " Checkout repository 🛎"
33
- uses : actions/checkout@v4
34
- - name : " Setup CI environment 🛠"
35
- uses : ./.github/actions/set-dev-env
36
- with :
37
- python-version : ${{ env.DEFAULT_PYTHON_VERSION }}
38
- - name : " Run lint checks 🧹"
39
- run : python -Im tox run -e lint
40
-
41
29
# Run our test suite on various combinations of OS & Python versions
42
30
run-pytest :
43
- needs : lint
44
31
strategy :
45
32
fail-fast : true
46
33
matrix :
108
95
# Only run accessibility tests on the latest Python version (3.12) and Ubuntu
109
96
a11y-tests :
110
97
name : " a11y-tests (ubuntu-latest, 3.12)"
111
- needs : lint
112
98
runs-on : ubuntu-latest
113
99
steps :
114
100
- name : " Checkout repository 🛎"
@@ -125,7 +111,6 @@ jobs:
125
111
# Build our docs (PST) on major OSes and check for warnings
126
112
build-site :
127
113
name : " build PST docs"
128
- needs : lint
129
114
strategy :
130
115
fail-fast : false
131
116
matrix :
You can’t perform that action at this time.
0 commit comments