Skip to content

refactor: apply clippy fixes #53

refactor: apply clippy fixes

refactor: apply clippy fixes #53

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check Cargo.lock
run: cargo fetch --locked
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Lint
run: cargo clippy --all-targets -- -D warnings
- name: Format
run: cargo fmt --check
- name: Test
run: cargo test