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-15 11:04:54 +01:00
|
|
|
run: cargo clippy --all
|
2020-12-15 10:59:13 +01:00
|
|
|
- name: Build
|
2020-12-15 11:04:54 +01:00
|
|
|
run: cargo build --all
|
2020-12-15 10:59:13 +01:00
|
|
|
- name: Run tests
|
|
|
|
run: make check-all
|