Skip to content

build(deps): update quick-xml requirement from 0.36.0 to 0.37.0 (#108) #132

build(deps): update quick-xml requirement from 0.36.0 to 0.37.0 (#108)

build(deps): update quick-xml requirement from 0.36.0 to 0.37.0 (#108) #132

Workflow file for this run

on: push
name: Clippy check
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Clippy
run: cargo clippy --color always --all-targets --all-features
- name: Run fmt check
run: cargo fmt --all --check -- --color=always