advent-of-code/.github/workflows/rust.yaml

25 lines
401 B
YAML

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format
run: cargo fmt -- --check
- name: Lint
run: cargo clippy --all --all-targets --all-features -- -D warnings
- name: Run tests
run: make check-all