From 9e96a9e772b6dbab1ca75a1ada82d9032cff5906 Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Sun, 26 Apr 2020 15:43:19 +0200 Subject: [PATCH] Add github actions to check formatting and clippy lints Signed-off-by: Daniel Egger --- .github/workflows/clippy.yml | 18 ++++++++++++++++++ .github/workflows/rustfmt.yml | 20 ++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .github/workflows/clippy.yml create mode 100644 .github/workflows/rustfmt.yml diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml new file mode 100644 index 0000000..b3950fe --- /dev/null +++ b/.github/workflows/clippy.yml @@ -0,0 +1,18 @@ +on: [push, pull_request] + +name: Clippy check +jobs: + clippy_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: rustup component add clippy + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + target: thumbv6m-none-eabi + override: true + - uses: actions-rs/clippy-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --features=stm32f072 --target thumbv6m-none-eabi diff --git a/.github/workflows/rustfmt.yml b/.github/workflows/rustfmt.yml new file mode 100644 index 0000000..1215725 --- /dev/null +++ b/.github/workflows/rustfmt.yml @@ -0,0 +1,20 @@ +on: [push, pull_request] + +name: Code formatting check + +jobs: + fmt: + name: Rustfmt + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - run: rustup component add rustfmt + - uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check