Skip to content

Commit

Permalink
CI: add simple CI
Browse files Browse the repository at this point in the history
run rustfmt, clippy, tests
  • Loading branch information
martinetd committed Sep 8, 2024
1 parent 6f31bb7 commit 3aabc58
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: push
name: simple CI

env:
RUSTFLAGS: "-Dwarnings"

jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt
- name: Run Clippy
run: cargo clippy --all-targets --all-features
- name: Run tests
run: cargo test

0 comments on commit 3aabc58

Please sign in to comment.