From 5eb43c4cb2f18535ffa94705068ac0b3af681810 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 16 Dec 2020 10:02:52 +0100 Subject: [PATCH] Add CI configuration --- .github/workflows/rust.yml | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..0caaf60 --- /dev/null +++ b/.github/workflows/rust.yml @@ -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