Skip to content

Commit

Permalink
ci: add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Theo Paris committed May 29, 2024
1 parent c2f943e commit 2063c24
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: test suite
on: [push, pull_request]

jobs:
test:
name: Build and Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Build and test
run: cargo test --all-features
- name: Lint
run: cargo clippy -- -Dwarnings

0 comments on commit 2063c24

Please sign in to comment.