Skip to content

Bump anyhow from 1.0.79 to 1.0.80 #89

Bump anyhow from 1.0.79 to 1.0.80

Bump anyhow from 1.0.79 to 1.0.80 #89

Workflow file for this run

on: [push]
name: CI
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
with:
command: fmt
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --all-targets
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features