Skip to content

Bump thiserror from 2.0.8 to 2.0.9 #59

Bump thiserror from 2.0.8 to 2.0.9

Bump thiserror from 2.0.8 to 2.0.9 #59

Workflow file for this run

name: Run tests
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Run lint
run: cargo fmt -- --check && cargo clippy --no-deps -- -D warnings
test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test