Skip to content

Bump thiserror from 1.0.64 to 2.0.8 #452

Bump thiserror from 1.0.64 to 2.0.8

Bump thiserror from 1.0.64 to 2.0.8 #452

Workflow file for this run

name: Code check
on: [ pull_request ]
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Install clippy
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: clippy check
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all --all-features
fmt:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: fmt check
run: cargo fmt --all -- --check