Skip to content

Commit

Permalink
[REGRESSION] Fix for regression in last change (- WIP #46 & #49 -)
Browse files Browse the repository at this point in the history
Changes in file .github/workflows/Tests.yml:
 FIXED TYPO
  • Loading branch information
reactive-firewall committed Aug 27, 2024
1 parent ffb46e9 commit 28ea471
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -421,16 +421,16 @@ jobs:
cp -vf ./coverage.xml ./test-reports/coverage.xml || true ;
shell: bash
- name: Summerize Regressions for python ${{ matrix.python-version }}
id: sumerize-r-check
id: sumerize-r-check-s
run: |
echo "- Test Reports did NOT regress for python version ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY
if: ${{ success() }}
shell: bash
- name: Summerize Regressions for python ${{ matrix.python-version }}
id: sumerize-r-check
id: sumerize-r-check-f
run: |
echo "- Test Reports did NOT regress for python version ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY
if: ${{ failed() }}
if: ${{ failure() }}
shell: bash
- name: Post-z-purge
id: post-uninstall
Expand Down

0 comments on commit 28ea471

Please sign in to comment.