We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e70fbd commit f9cdf47Copy full SHA for f9cdf47
.github/workflows/ci.yml
@@ -54,6 +54,19 @@ jobs:
54
- name: Run tests
55
run: cargo test -p exec-harness
56
57
+ basic-run-test:
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
61
+ with:
62
+ submodules: true
63
+ - name: "Install rust-toolchain.toml"
64
+ run: rustup toolchain install
65
+ # We use Swatinem/rust-cache to cache cargo registry, index and target in this job
66
+ - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2
67
+ - name: Run tests
68
+ run: cargo run -- exec -m simulation,walltime,memory --skip-upload -- ls -la
69
+
70
bpf-tests:
71
runs-on: ubuntu-latest
72
steps:
0 commit comments