From 3e741a86da0418a20cf6b1c7456ad9fb9df473cd Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 26 Sep 2022 14:31:46 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A8=20Format=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/audit.yaml | 10 ++++++---- .github/workflows/cd.yaml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml index 10a7f03..bdc8652 100644 --- a/.github/workflows/audit.yaml +++ b/.github/workflows/audit.yaml @@ -3,12 +3,15 @@ name: Security audit on: schedule: # Runs at 00:00 UTC everyday - - cron: '0 0 * * *' + - cron: "0 0 * * *" push: paths: - - '**/Cargo.toml' - - '**/Cargo.lock' + - "**/Cargo.toml" + - "**/Cargo.lock" pull_request: + paths: + - "**/Cargo.toml" + - "**/Cargo.lock" env: CARGO_TERM_COLOR: always @@ -29,4 +32,3 @@ jobs: - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index c3dcc78..3b2d78d 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -3,7 +3,7 @@ name: Continuous Deployment on: push: tags: - - '[v]?[0-9]+.[0-9]+.[0-9]+' + - "[v]?[0-9]+.[0-9]+.[0-9]+" env: CARGO_TERM_COLOR: always