Skip to content

Commit

Permalink
add lint job
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma authored Jan 22, 2024
1 parent f662d8c commit 0ef9756
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@ env:
CARGO_TERM_COLOR: always

jobs:
lint:
name: Lint

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy, rustfmt
- name: Check Format
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy

test:
name: Test

Expand Down

0 comments on commit 0ef9756

Please sign in to comment.