Skip to content

deps(cargo): bump thiserror from 1.0.63 to 1.0.64 in the rust group (… #66

deps(cargo): bump thiserror from 1.0.63 to 1.0.64 in the rust group (…

deps(cargo): bump thiserror from 1.0.63 to 1.0.64 in the rust group (… #66

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