diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..78eafcb --- /dev/null +++ b/.github/workflows/CI.yml @@ -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 \ No newline at end of file