Skip to content

Commit

Permalink
Add "check" GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ureeves committed Nov 15, 2023
1 parent 33c2e30 commit ef54070
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Empty file removed .github/workflows/build.yml
Empty file.
30 changes: 30 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Check `healm`
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- run: cargo test --all-features

format:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- run: cargo fmt --check

lint:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- run: cargo clippy --all-features -- -D warnings

0 comments on commit ef54070

Please sign in to comment.