pi-frame-server/.forgejo/workflows/cargo.yml
Champlin, Saji 07bc399bbc
All checks were successful
cargo_test_bench / Run Tests (push) Successful in 1m13s
cargo_test_bench / Run Benchmarks (push) Successful in 1m27s
revert previous; breaks cache action
2024-08-01 10:16:33 -05:00

26 lines
676 B
YAML

name: cargo_test_bench
on: push
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: https://github.com/dtolnay/rust-toolchain@stable
- uses: https://github.com/Swatinem/rust-cache@v2
- run: cargo test --all-features
bench:
name: Run Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: https://github.com/dtolnay/rust-toolchain@stable
- uses: https://github.com/Swatinem/rust-cache@v2
- run: git checkout HEAD~
- run: cargo bench
- run: git checkout master
- run: cargo bench