Skip to content

Update bitstream-io requirement from 1.2.0 to 2.0.0 #111

Update bitstream-io requirement from 1.2.0 to 2.0.0

Update bitstream-io requirement from 1.2.0 to 2.0.0 #111

Workflow file for this run

on:
push:
branches: [main]
pull_request:
name: Continuous integration
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo test --all-features
fmt:
name: format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all --check
clippy:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- uses: actions-rs-plus/clippy-check@v2
with:
args: --all --all-features --all-targets