build(deps): bump prettyplease from 0.2.19 to 0.2.20 #1636
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
name: blobby | |
on: | |
pull_request: | |
paths: | |
- "blobby/**" | |
- "Cargo.*" | |
push: | |
branches: master | |
permissions: | |
contents: read | |
defaults: | |
run: | |
working-directory: blobby | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.39.0 # MSRV | |
- stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: RustCrypto/actions/cargo-cache@master | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
# Isolate this crate from workspace which is otherwise MSRV 1.56 due to 2021 edition crates | |
- run: rm ../Cargo.toml | |
- run: cargo test | |
minimal-versions: | |
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master | |
with: | |
working-directory: ${{ github.workflow }} |