We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aba3a0 commit 84e66c9Copy full SHA for 84e66c9
.github/workflows/go-test.yml
@@ -60,3 +60,16 @@ jobs:
60
go build ./...
61
# empty tests for now, yet stronger check than just go build
62
go test ./...
63
+
64
+ test-complete:
65
+ # description: |
66
+ # Rendez-vous job: single required status check for branch protection,
67
+ # instead of requiring every matrix combination individually.
68
+ name: tests completed
69
+ needs: [lint, build]
70
+ runs-on: ubuntu-latest
71
+ steps:
72
+ -
73
+ name: Tests completed
74
+ run: |
75
+ echo "::notice title=Success::All tests passed"
0 commit comments