Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Chore(deps): Bump thiserror from 2.0.3 to 2.0.4 #95

Chore(deps): Bump thiserror from 2.0.3 to 2.0.4

Chore(deps): Bump thiserror from 2.0.3 to 2.0.4 #95

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo fmt -- --check
- run: cargo clippy --all-features -- --deny warnings
- run: cargo test --all-features