Update crane version to latest #716
Workflow file for this run
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: Buffrs CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
MINIMUM_LINE_COVERAGE_PERCENT: 35 | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update && rustup component add rustfmt | |
- run: cargo fmt --check --all | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update && rustup component add clippy | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo clippy --all-targets --workspace -- -D warnings -D clippy::all | |
deny: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-deny || true | |
- run: cargo deny --workspace check | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: 'true' | |
- run: rustup update | |
- run: rustup component add llvm-tools-preview | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-llvm-cov || true | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
- run: cargo llvm-cov --workspace --fail-under-lines "$MINIMUM_LINE_COVERAGE_PERCENT" | |
env: | |
RUST_BACKTRACE: 1 | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install typos-cli@=1.16.26 --locked || true | |
- run: typos |