From 2971bf30a50dc91e0a88c0e95d8465bdaa8c3bca Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 21 Oct 2021 00:30:19 +0100 Subject: [PATCH] actions: combine code verify into one step this way the diff takes one less click to get to. --- .github/workflows/main.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5a56fc25e9..9ba8745123 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -238,11 +238,10 @@ jobs: - name: Regenerate KnownTranslation APIs run: php build/generate-known-translation-apis.php - - name: Run git diff - run: git diff - - - name: Fail job if changes were made - run: git diff --quiet + - name: Verify code is unchanged + run: | + git diff + git diff --quiet codestyle: name: Code Style checks