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
|
2020-12-17 01:36:32 +01:00
|
|
|
- name: Format
|
|
|
|
run: cargo fmt -- --check
|
2020-12-15 10:59:13 +01:00
|
|
|
- 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
|