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 a5bcbc6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Empty file removed .github/workflows/build.yml
Empty file.
33 changes: 33 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Check `healm`
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- uses: actions/checkout@v3
- run: cargo test --all-features

format:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- uses: actions/checkout@v3
- run: cargo fmt --check

lint:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- uses: actions/checkout@v3
- run: cargo clippy --all-features -- -D warnings

0 comments on commit a5bcbc6

Please sign in to comment.