Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: CI

on:
push:
Expand Down Expand Up @@ -47,8 +47,8 @@ jobs:
- name: Check examples are up to date
run: mise run examples-check

test-and-build:
name: Test and Build
test:
name: Test
needs: lint
strategy:
matrix:
Expand Down Expand Up @@ -249,13 +249,13 @@ jobs:
# This provides a single status check for branch protection
test-summary:
name: Test Summary
needs: [lint, test-and-build]
needs: [lint, test]
runs-on: ubuntu-latest
if: always()
steps:
- name: Check test results
run: |
if [ "${{ needs.test-and-build.result }}" != "success" ]; then
if [ "${{ needs.test.result }}" != "success" ]; then
echo "Tests failed or were cancelled"
exit 1
fi
Expand Down
Loading
Loading