Skip to content

Commit cd3437d

Browse files
ci: fix
1 parent 41f7152 commit cd3437d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test
1+
name: CI
22

33
on:
44
push:
@@ -47,8 +47,8 @@ jobs:
4747
- name: Check examples are up to date
4848
run: mise run examples-check
4949

50-
test-and-build:
51-
name: Test and Build
50+
test:
51+
name: Test
5252
needs: lint
5353
strategy:
5454
matrix:
@@ -249,13 +249,13 @@ jobs:
249249
# This provides a single status check for branch protection
250250
test-summary:
251251
name: Test Summary
252-
needs: [lint, test-and-build]
252+
needs: [lint, test]
253253
runs-on: ubuntu-latest
254254
if: always()
255255
steps:
256256
- name: Check test results
257257
run: |
258-
if [ "${{ needs.test-and-build.result }}" != "success" ]; then
258+
if [ "${{ needs.test.result }}" != "success" ]; then
259259
echo "Tests failed or were cancelled"
260260
exit 1
261261
fi

0 commit comments

Comments
 (0)