File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ name : CI
3+
4+ on :
5+ push :
6+ pull_request :
7+ schedule : [cron: "40 1 * * *"]
8+
9+ jobs :
10+ install :
11+ name : Rust ${{matrix.rust}}
12+ runs-on : ubuntu-latest
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ rust : [nightly, beta, stable]
17+ steps :
18+ - uses : actions/checkout@v3
19+ - uses : ./
20+ name : Run actions-rust-lang/setup-rust-toolchain ${{matrix.rust}}
21+ id : toolchain
22+ with :
23+ toolchain : ${{matrix.rust}}
24+ - name : Check ${{'${{steps.toolchain.outputs.rustc-version}}'}}
25+ run : echo '${{steps.toolchain.outputs.rustc-version}}'
26+ - name : Check ${{'${{steps.toolchain.outputs.cargo-version}}'}}
27+ run : echo '${{steps.toolchain.outputs.cargo-version}}'
28+ - name : Check ${{'${{steps.toolchain.outputs.rustup-version}}'}}
29+ run : echo '${{steps.toolchain.outputs.rustup-version}}'
30+ - run : rustc --version && cargo --version
31+ shell : bash
You can’t perform that action at this time.
0 commit comments