Skip to content

Commit

Permalink
rust: Add fmt and clippy to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed May 22, 2024
1 parent 0518475 commit 69d5104
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/unittests-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ name: Rust unit tests
on: push

jobs:
test-rust:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install task runner
run: pip install poethepoet
- name: Run fmt
run: |
poe fmtcheck
- name: Run clippy
run: |
poe clippy
- name: Run Rust unit tests
run: |
poe rtest

0 comments on commit 69d5104

Please sign in to comment.