2020-05-26 17:59:05 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ['master']
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
rust: [stable, beta]
|
|
|
|
exclude:
|
|
|
|
- os: macos-latest
|
|
|
|
rust: beta
|
|
|
|
- os: windows-latest
|
|
|
|
rust: beta
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
2020-11-23 12:24:46 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-26 17:59:05 +00:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --workspace --all-targets
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
2020-11-24 09:38:19 +00:00
|
|
|
args: --workspace --all-features
|
2020-05-26 17:59:05 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-11-23 12:24:46 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-26 17:59:05 +00:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
command: clippy
|
|
|
|
args: --workspace --all-targets -- -D warnings
|
|
|
|
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-11-23 12:24:46 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|