We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72018dc commit 6ce9725Copy full SHA for 6ce9725
1 file changed
.github/workflows/quality.yml
@@ -99,7 +99,7 @@ jobs:
99
integration-tests:
100
name: 'Integration Tests (${{ matrix.os }})'
101
runs-on: ${{ matrix.os }}
102
- needs: [lint, bats-tests, builtin-tests]
+ needs: [lint, bats-tests]
103
strategy:
104
fail-fast: false
105
matrix:
@@ -156,7 +156,7 @@ jobs:
156
quality-gate:
157
name: 'Quality Gate'
158
runs-on: ubuntu-latest
159
160
if: always()
161
steps:
162
- name: Check All Jobs
@@ -169,8 +169,4 @@ jobs:
169
echo "BATS tests failed!"
170
exit 1
171
fi
172
- if [ "${{ needs.builtin-tests.result }}" != "success" ]; then
173
- echo "Built-in tests failed!"
174
- exit 1
175
- fi
176
echo "All quality checks passed! ✅"
0 commit comments