Skip to content

Commit

Permalink
Add lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
ansermino committed Sep 26, 2024
1 parent 784f6b2 commit 9ab1889
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Empty file added .github/workflows/build.yml
Empty file.
22 changes: 22 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lint

on:
pull_request:

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@master

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy

- name: Run clippy
run: make lint

0 comments on commit 9ab1889

Please sign in to comment.