Skip to content

Update dependencies (#4) #41

Update dependencies (#4)

Update dependencies (#4) #41

Workflow file for this run

# This workflow runs on every push and checks whether everything looks good
name: Quick check
on:
push:
tags:
- "!v*"
branches:
- "*"
pull_request:
branches:
- master
jobs:
quick_check:
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy, rustfmt
- 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:
command: fmt
args: --all -- --check
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: Cargo check
uses: actions-rs/cargo@v1
with:
command: check