Skip to content

Add "check" GitHub workflow #2

Add "check" GitHub workflow

Add "check" GitHub workflow #2

Workflow file for this run

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