Skip to content

Update thiserror requirement from 1.0.49 to 2.0.4 #16

Update thiserror requirement from 1.0.49 to 2.0.4

Update thiserror requirement from 1.0.49 to 2.0.4 #16

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: rustup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: rustup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-targets
clippy:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: rustup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings