Skip to content

Commit

Permalink
Parametrized test jobs shouldn't overwrite each other's exitstatus
Browse files Browse the repository at this point in the history
  • Loading branch information
lkubb committed Dec 10, 2023
1 parent c4f4fcf commit 82c9fcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
if: always()
run: |
mkdir exitstatus
echo "${{ job.status }}" > exitstatus/${{ github.job }}
echo "${{ job.status }}" > exitstatus/${{ github.job }}-Py{{ matrix.python-version }}-Salt{{ matrix.salt-version }}
- name: Upload Exit Status
if: always()
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
if: always()
run: |
mkdir exitstatus
echo "${{ job.status }}" > exitstatus/${{ github.job }}
echo "${{ job.status }}" > exitstatus/${{ github.job }}-Py{{ matrix.python-version }}-Salt{{ matrix.salt-version }}
- name: Upload Exit Status
if: always()
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:
if: always()
run: |
mkdir exitstatus
echo "${{ job.status }}" > exitstatus/${{ github.job }}
echo "${{ job.status }}" > exitstatus/${{ github.job }}-Py{{ matrix.python-version }}-Salt{{ matrix.salt-version }}
- name: Upload Exit Status
if: always()
Expand Down

0 comments on commit 82c9fcf

Please sign in to comment.