Add tracing to validation code for debugging / performance evaluation #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: [main] | |
env: | |
RUSTFLAGS: -D warnings | |
CARGO_TERM_COLOR: always | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
name: Check Lint Test | |
jobs: | |
lint: | |
name: Check Lint Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: cargo check | |
run: cargo +nightly check --all --all-features --benches --tests | |
- name: cargo fmt | |
run: cargo +nightly fmt --all --check | |
- name: cargo clippy | |
run: cargo +nightly clippy --all --all-features --benches --tests | |
- name: cargo test | |
run: cargo +nightly test |