Skip to content

Commit

Permalink
Add clippy and rustfmt CI jobs (#156)
Browse files Browse the repository at this point in the history
Closes #153.
  • Loading branch information
liquidev committed Oct 30, 2023
1 parent d29a98f commit f16cbaa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,19 @@ jobs:
-
name: Run Language and API tests
run: cargo test --release -- --include-ignored

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
-
name: Clippy
run: cargo clippy

rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
-
name: rustfmt
run: cargo fmt --check --all

0 comments on commit f16cbaa

Please sign in to comment.