Skip to content

Deps update

Deps update #41

Workflow file for this run

name: Quick check
on:
push:
tags:
- "!v*"
branches:
- "*"
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
quick_check:
env:
CARGO_TERM_COLOR: always
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy, rustfmt
- name: Install Rust tooling
uses: taiki-e/install-action@v2
with:
tool: nextest
- name: Cache Dependencies & Build Outputs
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/checkout@v3
- name: Cargo fmt
uses: actions-rs/cargo@v1
with:
toolchain: nightly
command: fmt
args: --all -- --check
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
toolchain: nightly
command: clippy
args: -- -D warnings
- name: Cargo nextest
uses: actions-rs/cargo@v1
with:
command: nextest
args: run
- name: Cargo check
uses: actions-rs/cargo@v1
with:
command: check