Skip to content

Commit

Permalink
Init ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Jul 30, 2024
1 parent 187136f commit bcedc21
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
bench:
runs-on:
group: Default
labels: Linux-ARM64
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: 'aarch64-unknown-linux-gnu'
env:
CARGO_INCREMENTAL: '1'
- name: Run benchmarks
run: cargo bench

0 comments on commit bcedc21

Please sign in to comment.