Skip to content

Bump thiserror from 1.0.63 to 1.0.66 #173

Bump thiserror from 1.0.63 to 1.0.66

Bump thiserror from 1.0.63 to 1.0.66 #173

Workflow file for this run

name: "Test Suite"
on:
push:
branches: [ "main", "xilem" ]
pull_request:
branches: [ "main", "xilem" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# See https://github.com/actions-rust-lang/setup-rust-toolchain
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test --all-features
# Check formatting with rustfmt
formatting:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Ensure rustfmt is installed and set up problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1