File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,20 @@ concurrency:
1616jobs :
1717 main :
1818 name : Run check, test and lints
19- runs-on : drink-runner
19+ runs-on : ubuntu-latest
2020 env :
2121 CARGO_INCREMENTAL : 0
2222 steps :
2323 - name : Checkout source code
2424 uses : actions/checkout@v3
2525
2626 - name : Install Rust toolchain
27- uses : use-ink/github- actions/install-rust- toolchain@v1
27+ uses : actions-rs/ toolchain@v1
2828 with :
29- components : clippy rustfmt
29+ toolchain : 1.86
30+ profile : minimal
31+ default : true
32+ components : clippy, rustfmt
3033
3134 - name : Add rust-src
3235 shell : bash
5154
5255 - name : Run tests for examples
5356 shell : bash
54- run : make test_examples
57+ run : |
58+ for dir in examples/*; do (echo "Running example: $dir" && cargo test --manifest-path $dir/Cargo.toml); done
You can’t perform that action at this time.
0 commit comments