Skip to content

Update thiserror requirement from 1.0 to 2.0 #33

Update thiserror requirement from 1.0 to 2.0

Update thiserror requirement from 1.0 to 2.0 #33

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: rustup component add rustfmt
- name: Format
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --all-features --verbose
- name: Docs
run: cargo doc --no-deps