Skip to content

chore(deps): bump thiserror from 2.0.3 to 2.0.6 #332

chore(deps): bump thiserror from 2.0.3 to 2.0.6

chore(deps): bump thiserror from 2.0.3 to 2.0.6 #332

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cargo_fmt:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install nightly with rustfmt and clippy
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- name: Style
run: cargo +nightly fmt -- --check
- name: Lint
run: cargo +nightly clippy
- name: Build
run: cargo build
- name: Test
run: cargo test