Remove allocation for DekuError into io::Error #372
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: [cron: "40 1 * * *"] | |
name: Check MSRV of backhand | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: "-C target-feature=+crt-static" | |
strategy: | |
# By default, this is set to `true`, which means that a single CI job | |
# failure will cause all outstanding jobs to be canceled. This slows down | |
# development because it means that errors need to be encountered and | |
# fixed one at a time. | |
fail-fast: false | |
matrix: | |
target: | |
- x86_64-unknown-linux-musl | |
toolchain: | |
# msrv of backhand | |
- 1.67.1 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Populate cache | |
uses: ./.github/workflows/cache | |
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248 # master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- run: cargo install cargo-quickinstall | |
- run: cargo quickinstall [email protected] --force | |
- run: cross check --all-features --target ${{ matrix.target }} --locked -p backhand |