Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
arielk authored Oct 19, 2023
2 parents e75fc2f + 5529353 commit 92495fd
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/plugins-tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
path: ./build/*
key: ${{ github.sha }}

test:
Plugin-tester:
name: Test Plugins
runs-on: ubuntu-latest
needs: [build-plugin]
Expand Down Expand Up @@ -115,3 +115,16 @@ jobs:
name: errors-reports
path: ./tests/plugins-tester/errors-reports/
retention-days: 7

test-result:
needs: Plugin-tester
if: ${{ always() }} # Will be run even if 'Plugin-tester' matrix will be skipped
runs-on: ubuntu-22.04
name: Plugin Tester - Test Results
steps:
- name: Test status
run: echo "Test status is - ${{ needs.Plugin-tester.result }}"
- name: Check Plugin-tester matrix status
if: ${{ needs.Plugin-tester.result != 'success' && needs.Plugin-tester.result != 'skipped' }}
run: exit 1

0 comments on commit 92495fd

Please sign in to comment.