Skip to content

Bump thiserror from 1.0.56 to 1.0.57 #122

Bump thiserror from 1.0.56 to 1.0.57

Bump thiserror from 1.0.56 to 1.0.57 #122

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
name: Rust checks
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@stable
- uses: davidB/rust-cargo-make@v1
- uses: actions/checkout@v4
- name: Run format
run: cargo make format
- name: Run check
run: cargo make check
- name: Run clippy
run: cargo make clippy
- name: Run test
run: cargo make test