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

23 lines
350 B
YAML
Raw Normal View History

2020-12-15 10:59:13 +01:00
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: Lint
2020-12-17 00:38:56 +01:00
run: cargo clippy --all --all-targets --all-features -- -D warnings
2020-12-15 10:59:13 +01:00
- name: Run tests
run: make check-all