Skip to content

perf: -4.2% recursion guest cycles in the stacked opening and the bus #26

perf: -4.2% recursion guest cycles in the stacked opening and the bus

perf: -4.2% recursion guest cycles in the stacked opening and the bus #26

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: rust-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test --release --workspace
- name: Clippy
run: cargo clippy --release --workspace --all-targets -- -D warnings
- name: Rustdoc
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --release --workspace --no-deps