Skip to content

⬆️ Update thiserror requirement from 1.0 to 2.0 #5

⬆️ Update thiserror requirement from 1.0 to 2.0

⬆️ Update thiserror requirement from 1.0 to 2.0 #5

Workflow file for this run

name: ci-flow
on:
pull_request:
push:
branches:
- master
- "releases/*"
# tags-ignore:
# - "[0-9]+.[0-9]+.[0-9]+*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "ubuntu-latest"
- "macOS-latest"
- "windows-latest"
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: mozilla-actions/sccache-action@v0.0.5
- run: cargo clippy --workspace --all-features --no-deps --all-targets -- --deny warnings
- run: cargo test --all-features
- run: ${SCCACHE_PATH} --show-stats
shell: bash