Skip to content

chore(deps): bump anyhow from 1.0.91 to 1.0.92 #358

chore(deps): bump anyhow from 1.0.91 to 1.0.92

chore(deps): bump anyhow from 1.0.91 to 1.0.92 #358

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Test
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout πŸ›ŽοΈ
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain πŸ›ŽοΈ
with:
components: rustfmt, clippy
toolchain: stable
default: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
name: Check Code Format πŸ”§
with:
command: fmt
args: -- --check
- uses: actions-rs/cargo@v1
name: Run Clippy Lints πŸ”¨
with:
command: clippy
args: --all-targets
test:
name: Test
runs-on: ubuntu-latest
env:
TEST_FAST: 1
steps:
- uses: actions/checkout@v2
name: Checkout πŸ›ŽοΈ
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain πŸ›ŽοΈ
with:
profile: minimal
toolchain: stable
default: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
name: Running Tests πŸš€
with:
command: test
args: --workspace