Skip to content

build(deps): bump anyhow from 1.0.88 to 1.0.89 #873

build(deps): bump anyhow from 1.0.88 to 1.0.89

build(deps): bump anyhow from 1.0.88 to 1.0.89 #873

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request: {}
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Fmt Check
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --no-deps -- -Dwarnings
- name: Compile
run: cargo build
- name: Test
run: cargo test