We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ac76e commit 6a1b184Copy full SHA for 6a1b184
1 file changed
.github/workflows/ci.yml
@@ -69,6 +69,19 @@ jobs:
69
- name: Run tests
70
run: cargo run -- exec -m simulation,walltime,memory --skip-upload --warmup-time 0s --max-rounds 5 -- ls -la
71
72
+ macos-basic-run-test:
73
+ runs-on: macos-latest
74
+ steps:
75
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
76
+ with:
77
+ submodules: true
78
+ - name: "Install rust-toolchain.toml"
79
+ run: rustup toolchain install
80
+ # We use Swatinem/rust-cache to cache cargo registry, index and target in this job
81
+ - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2
82
+ - name: Run tests
83
+ run: cargo run -- exec -m walltime --skip-upload --warmup-time 0s --max-rounds 5 -- ls -la
84
+
85
bpf-tests:
86
runs-on: ubuntu-latest
87
steps:
0 commit comments