Skip to content

chore(deps): bump flate2 from 1.0.31 to 1.0.34 #99

chore(deps): bump flate2 from 1.0.31 to 1.0.34

chore(deps): bump flate2 from 1.0.31 to 1.0.34 #99

Workflow file for this run

name: Rust CI
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update nightly && rustup default nightly && rustup component add rustfmt
- run: cargo fmt --check