From e4a4c230feb73375f92a22d7834d4247c1dabf9e Mon Sep 17 00:00:00 2001 From: dignifiedquire Date: Tue, 9 Jun 2020 13:02:17 +0200 Subject: [PATCH] fixup: ci --- .github/workflows/build-test.yml | 5 ++++- .github/workflows/code-quality.yml | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index e3776ccbc..15bf197bc 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -1,4 +1,7 @@ -on: push +on: + pull_request: + push: + name: Build and Test jobs: diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 3f10a83c3..84885a5cf 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -1,4 +1,7 @@ -on: push +on: + pull_request: + push: + name: Code Quality jobs: @@ -16,7 +19,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: fmt - args: --workspace -- --check + args: --all -- --check run_clippy: runs-on: ubuntu-latest