This repository was archived by the owner on Sep 20, 2024. It is now read-only.
Bump DeterminateSystems/update-flake-lock from 22 to 24 #135
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
name: Build | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
pull_request: | |
branches: | |
- main | |
- release-* | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: '--cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std"' | |
RUST_LOG: info | |
steps: | |
- uses: styfle/[email protected] | |
name: Cancel Outdated Builds | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
- name: Build | |
run: | | |
cargo build --release | |
- name: Format Check | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy --workspace --all-features --all-targets -- -D warnings | |
- name: Test | |
run: | | |
cargo test --workspace --release --all-features --no-run | |
cargo test --workspace --release --all-features --verbose -- --test-threads 2 | |
timeout-minutes: 60 | |
- name: Generate Documentation | |
run: | | |
cargo doc --no-deps --lib --release --all-features |