File tree Expand file tree Collapse file tree 7 files changed +2104
-85
lines changed Expand file tree Collapse file tree 7 files changed +2104
-85
lines changed Original file line number Diff line number Diff line change 4747jobs :
4848 # Run 'dist plan' (or host) to determine what tasks we need to do
4949 plan :
50- runs-on : " ubuntu-20.04 "
50+ runs-on : " ubuntu-latest "
5151 outputs :
5252 val : ${{ steps.plan.outputs.manifest }}
5353 tag : ${{ !github.event.pull_request && github.ref_name || '' }}
Original file line number Diff line number Diff line change 1+ name : Rust
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+ pull_request :
7+ branches : [ "master" ]
8+
9+ env :
10+ CARGO_TERM_COLOR : always
11+
12+ jobs :
13+ build :
14+
15+ runs-on : ubuntu-latest
16+
17+ steps :
18+ - uses : actions/checkout@v4
19+ - name : rustc -V
20+ run : rustc -V
21+ - name : cargo -V
22+ run : cargo -V
23+ - name : Build
24+ run : cat Cargo.toml && cargo build --verbose
25+ - name : Run tests
26+ run : cat Cargo.toml && cargo test --verbose
You can’t perform that action at this time.
0 commit comments