Skip to content

Storage + misc cleanup: #62

Storage + misc cleanup:

Storage + misc cleanup: #62

Workflow file for this run

on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
- release/*
name: Continuous integration
jobs:
check:
name: "Lint, tests, and checks"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
with:
command: check
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings