Skip to content

deps(cargo): bump thiserror from 2.0.6 to 2.0.7 in the rust group (#33) #79

deps(cargo): bump thiserror from 2.0.6 to 2.0.7 in the rust group (#33)

deps(cargo): bump thiserror from 2.0.6 to 2.0.7 in the rust group (#33) #79

Workflow file for this run

name: Build
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Run clippy
run: cargo clippy --tests
- name: Run tests
run: cargo test