Skip to content

Bump flate2 from 1.0.30 to 1.0.33 #247

Bump flate2 from 1.0.30 to 1.0.33

Bump flate2 from 1.0.30 to 1.0.33 #247

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install checkers and linters
run: |
rustup update stable
rustup default stable
rustup component add rustfmt
rustup component add clippy
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Check Idiomatic
run: cargo clippy --all --all-features -- -D warnings