Skip to content

Bump thiserror from 1.0.48 to 1.0.49 #35

Bump thiserror from 1.0.48 to 1.0.49

Bump thiserror from 1.0.48 to 1.0.49 #35

Workflow file for this run

name: Build
on: [push, pull_request]
permissions:
contents: read # to fetch code (actions/checkout)
env:
# Enable colored terminal output, see https://doc.rust-lang.org/cargo/reference/config.html#termcolor
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Build (${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
run: rustup toolchain install stable
- uses: Swatinem/rust-cache@v2
- name: Install cargo-make
# https://github.com/sagiegurari/cargo-make#installation
run: cargo install --no-default-features cargo-make
- name: Build
run: cargo make