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 4e7ef6c commit 4bd9fb0Copy full SHA for 4bd9fb0
.github/workflows/ci.yml
@@ -55,6 +55,12 @@ jobs:
55
- name: Check for breaking changes in the API
56
run: make check-api
57
58
+ - name: Store objects inventory for tests
59
+ uses: actions/upload-artifact@v4
60
+ with:
61
+ name: objects.inv
62
+ path: site/objects.inv
63
+
64
exclude-test-jobs:
65
runs-on: ubuntu-latest
66
outputs:
@@ -81,7 +87,9 @@ jobs:
81
87
82
88
tests:
83
89
84
- needs: exclude-test-jobs
90
+ needs:
91
+ - quality
92
+ - exclude-test-jobs
85
93
strategy:
86
94
matrix:
95
os:
@@ -123,5 +131,11 @@ jobs:
123
131
UV_RESOLUTION: ${{ matrix.resolution }}
124
132
run: make setup
125
133
134
+ - name: Download objects inventory
135
+ uses: actions/download-artifact@v4
136
137
138
+ path: site/
139
126
140
- name: Run the test suite
127
141
run: make test
0 commit comments