From 9ba317dc14cf7953f6176e3893fa38b1f51d961a Mon Sep 17 00:00:00 2001 From: Mieszko Grodzicki Date: Sun, 1 Jan 2023 13:41:20 +0100 Subject: [PATCH] Improve jobs names --- .github/workflows/ci.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 610ee23..f48e183 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,29 +15,27 @@ jobs: name: Test the action runs-on: ubuntu-latest steps: - - name: Checkout test repository + - name: Checkout the test repository uses: actions/checkout@v3 with: repository: mgr0dzicki/cargo-semver-action-ref-slice fetch-depth: 0 persist-credentials: true - - name: Checkout action + - name: Checkout the action uses: actions/checkout@v3 with: path: action - # test without semver violation - - name: Checkout branch patch_change + - name: Checkout the test with patch change and patch version bump run: git checkout patch_change - - name: Run action + - name: Run the action uses: ./action/ - # test with semver violation - - name: Checkout branch major_change + - name: Checkout the test with major change and patch version bump run: git checkout major_change - - name: Run action + - name: Run the action (allowed to fail) id: action_major uses: ./action/ continue-on-error: true - - name: Check action outcome + - name: Check the action outcome run: | if [[ "${{ steps.action_major.outcome }}" != 'failure' ]]; then echo "Error! The action should have failed because of the breaking change, but it has not."