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 e3fec47 commit 2925698Copy full SHA for 2925698
.github/workflows/ci2.yml
@@ -20,6 +20,7 @@ env:
20
RUSTFLAGS: "-D warnings"
21
22
jobs:
23
+ # job to list the jobs to run on rust stable
24
stable-prepare:
25
runs-on: ubuntu-latest
26
timeout-minutes: 30
@@ -33,6 +34,7 @@ jobs:
33
34
run: |
35
echo "jobs=`cargo run -p ci -- what-to-run --trigger ${{ github.event_name }} --head ${{ github.head_ref }} --rust-version stable`" >> $GITHUB_OUTPUT
36
37
+ # run all the jobs on stable
38
stable-run:
39
40
@@ -61,6 +63,7 @@ jobs:
61
63
62
64
${{ matrix.job }}
65
66
+ # single job to report status, usable in branch protection rules
67
stable-status:
68
69
needs: [stable-run]
0 commit comments