Skip to content

fix: unused imports on non-Windows platforms #2

fix: unused imports on non-Windows platforms

fix: unused imports on non-Windows platforms #2

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: never
jobs:
validate:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: check
run: cargo check --workspace --all-targets