Skip to content

Commit bcedc21

Browse files
committed
Init ci
1 parent 187136f commit bcedc21

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/CI.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
10+
jobs:
11+
bench:
12+
runs-on:
13+
group: Default
14+
labels: Linux-ARM64
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Setup Rust
18+
uses: dtolnay/rust-toolchain@stable
19+
with:
20+
targets: 'aarch64-unknown-linux-gnu'
21+
env:
22+
CARGO_INCREMENTAL: '1'
23+
- name: Run benchmarks
24+
run: cargo bench

0 commit comments

Comments
 (0)