32 lines
790 B
YAML
32 lines
790 B
YAML
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
name: CI
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
HOST: x86_64-unknown-linux-gnu
|
||
|
RUSTFLAGS: "-D warnings"
|
||
|
jobs:
|
||
|
tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
rust: [stable, beta, nightly, 1.51.0] # MSRV=1.51
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with: {profile: minimal, toolchain: '${{ matrix.rust }}', override: true}
|
||
|
- run: cargo test
|
||
|
clippy:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
rust: [beta]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with: {profile: minimal, toolchain: '${{ matrix.rust }}', override: true, components: clippy}
|
||
|
- run: cargo clippy
|