Skip to content

Bump anyhow from 1.0.75 to 1.0.76 #17

Bump anyhow from 1.0.75 to 1.0.76

Bump anyhow from 1.0.75 to 1.0.76 #17

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Setup rust cache
uses: Swatinem/rust-cache@v2
- name: cargo build
run: cargo build
- name: cargo test
run: cargo test
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy -- -D warnings