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 1a9c8b8 commit 3bd121eCopy full SHA for 3bd121e
.github/workflows/ci.yaml
@@ -7,7 +7,7 @@ on:
7
name: CI
8
9
jobs:
10
- check:
+ test:
11
name: Test
12
strategy:
13
matrix:
@@ -127,6 +127,14 @@ jobs:
127
cargo apk build -p example-runner-wgpu --lib --features use-installed-tools --no-default-features
128
echo "::endgroup::"
129
130
+ # This just allows us to branch protect on this one job rather needing to change
131
+ # it if the test matrix changes
132
+ test_success:
133
+ runs-on: ubuntu-22.04
134
+ needs: test
135
+ steps:
136
+ - run: echo "All test jobs passed"
137
+
138
lint:
139
name: Lint
140
runs-on: ubuntu-20.04-16core
0 commit comments