From 9538d9c2b13ea24d3f9a83946f65ac62693ae9b0 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Wed, 18 Mar 2020 15:55:19 +0000 Subject: Reorganize CI workflows --- .github/workflows/style.yml | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/style.yml (limited to '.github/workflows/style.yml') diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml new file mode 100644 index 0000000..1b71ad7 --- /dev/null +++ b/.github/workflows/style.yml @@ -0,0 +1,46 @@ +name: Style checks + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + fmt: + name: Rustfmt + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@master + with: + submodules: true + - name: Setup Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + components: rustfmt + - name: Run rustfmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check + + clippy: + name: Clippy + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@master + with: + submodules: true + - name: Setup Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + components: clippy + - name: Run clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + args: -- -D warnings -- cgit v1.2.3