Add CI configuration

This commit is contained in:
Dirkjan Ochtman 2020-12-16 10:02:52 +01:00
parent 1a3f8483f5
commit 5eb43c4cb2
1 changed files with 64 additions and 0 deletions

64
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,64 @@
name: CI
on:
push:
branches: ['main']
pull_request:
schedule:
- cron: "25 6 * * 5"
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:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --all-features --all-targets
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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 --all-features -- -D warnings
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: EmbarkStudios/cargo-deny-action@v1