Skip to content

feat: add panic lints, roll toolchain forward #92

feat: add panic lints, roll toolchain forward

feat: add panic lints, roll toolchain forward #92

Workflow file for this run

name: PR Build
permissions:
contents: read
on:
pull_request:
env:
# Faster from-scratch builds
CARGO_INCREMENTAL: 0
jobs:
build:
runs-on: ubuntu-latest-dd
steps:
- uses: actions/checkout@v4
- run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- run: . $HOME/.cargo/env && rustup update
- run: . $HOME/.cargo/env && cargo build --release --all
- run: . $HOME/.cargo/env && cargo test
- name: Check formatting
run: . $HOME/.cargo/env && cargo fmt --all -- --check
- name: Check clippy lints
run: . $HOME/.cargo/env && cargo clippy --all-targets --all-features -- -D warnings
- run: test_app/scripts/validate-against-expected.sh