update deps and fix assigning_clones #409
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 | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run typos | |
uses: crate-ci/typos@v1.18.0 | |
- name: Install Rust stable | |
run: | | |
set -x | |
rustup toolchain update --no-self-update stable | |
rustup default stable | |
rustup component add clippy rustfmt | |
rustup show | |
rustc --version | awk '{print $2}' | tee RUSTC_VER | |
echo "::set-output name=rustc_ver::$(cat RUSTC_VER)" | |
- name: Cache for Rust | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
~/.cargo/git/db | |
target | |
key: ${{ github.workflow }}|${{ runner.os }}|cargo|00|${{ steps.prep.outputs.rustc_ver }}|${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ github.workflow }}|${{ runner.os }}|cargo|00|${{ steps.prep.outputs.rustc_ver }}| | |
- name: Run rustfmt | |
run: cargo fmt --all --check | |
- name: Run clippy | |
run: cargo clippy --workspace --all-targets --all-features -- -Dwarnings | |
- name: Run tests | |
run: cargo test --all -- --nocapture | |
- name: Run build | |
run: cargo build --all |