Skip to content

Commit 7db47b5

Browse files
committed
Init
0 parents  commit 7db47b5

File tree

9 files changed

+31530
-0
lines changed

9 files changed

+31530
-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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)