Skip to content

Commit 4bd9fb0

Browse files
committed
ci: Run inventory tests in CI
1 parent 4e7ef6c commit 4bd9fb0

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ jobs:
5555
- name: Check for breaking changes in the API
5656
run: make check-api
5757

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+
5864
exclude-test-jobs:
5965
runs-on: ubuntu-latest
6066
outputs:
@@ -81,7 +87,9 @@ jobs:
8187
8288
tests:
8389

84-
needs: exclude-test-jobs
90+
needs:
91+
- quality
92+
- exclude-test-jobs
8593
strategy:
8694
matrix:
8795
os:
@@ -123,5 +131,11 @@ jobs:
123131
UV_RESOLUTION: ${{ matrix.resolution }}
124132
run: make setup
125133

134+
- name: Download objects inventory
135+
uses: actions/download-artifact@v4
136+
with:
137+
name: objects.inv
138+
path: site/
139+
126140
- name: Run the test suite
127141
run: make test

0 commit comments

Comments
 (0)