refactor: use errgroup #6830
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: pull_request | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
path-filter: | |
# Get changed files to filter jobs | |
timeout-minutes: 30 | |
outputs: | |
update-aqua-checksums: ${{steps.changes.outputs.update-aqua-checksums}} | |
renovate-config-validator: ${{steps.changes.outputs.renovate-config-validator}} | |
ghalint: ${{steps.changes.outputs.ghalint}} | |
go-mod-tidy: ${{steps.changes.outputs.go-mod-tidy}} | |
test-docker: ${{steps.changes.outputs.test-docker}} | |
test-docker-prebuilt: ${{steps.changes.outputs.test-docker-prebuilt}} | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
filters: | | |
update-aqua-checksums: | |
- aqua/aqua.yaml | |
- aqua/imports/*.yaml | |
- aqua/aqua-checksums.json | |
- .github/workflows/test.yaml | |
- .github/workflows/wc-update-aqua-checksums.yaml | |
renovate-config-validator: | |
- renovate.json5 | |
- .github/workflows/test.yaml | |
- .github/workflows/wc-renovate-config-validator.yaml | |
ghalint: | |
- .github/workflows/*.yaml | |
- aqua/aqua.yaml | |
- aqua/imports/ghalint.yaml | |
- ghalint.yaml | |
go-mod-tidy: | |
- go.mod | |
- go.sum | |
- "**.go" | |
- .github/workflows/test.yaml | |
- .github/workflows/wc-go-mod-tidy.yaml | |
test-docker: | |
- Dockerfile | |
- .github/workflows/wc-test.yaml | |
test-docker-prebuilt: | |
- Dockerfile-prebuilt | |
- .github/workflows/wc-test-docker-prebuilt.yaml | |
status-check: | |
uses: ./.github/workflows/wc-status-check.yaml | |
permissions: {} | |
if: failure() | |
needs: | |
- renovate-config-validator | |
- update-aqua-checksums | |
- ghalint | |
- test | |
- test-docker-prebuilt | |
- integration-test | |
- go-mod-tidy | |
renovate-config-validator: | |
uses: ./.github/workflows/wc-renovate-config-validator.yaml | |
needs: path-filter | |
if: needs.path-filter.outputs.renovate-config-validator == 'true' | |
permissions: | |
contents: read | |
update-aqua-checksums: | |
needs: path-filter | |
if: needs.path-filter.outputs.update-aqua-checksums == 'true' | |
uses: ./.github/workflows/wc-update-aqua-checksums.yaml | |
permissions: | |
contents: read | |
secrets: | |
gh_app_id: ${{secrets.APP_ID}} | |
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}} | |
ghalint: | |
needs: path-filter | |
if: needs.path-filter.outputs.ghalint == 'true' | |
uses: ./.github/workflows/wc-ghalint.yaml | |
permissions: {} | |
test: | |
uses: ./.github/workflows/wc-test.yaml | |
needs: path-filter | |
permissions: {} | |
with: | |
docker_is_changed: ${{needs.path-filter.outputs.test-docker == 'true'}} | |
test-docker-prebuilt: | |
uses: ./.github/workflows/wc-test-docker-prebuilt.yaml | |
needs: path-filter | |
if: needs.path-filter.outputs.test-docker-prebuilt == 'true' | |
permissions: {} | |
go-mod-tidy: | |
uses: ./.github/workflows/wc-go-mod-tidy.yaml | |
needs: path-filter | |
if: needs.path-filter.outputs.go-mod-tidy == 'true' | |
secrets: | |
gh_app_id: ${{secrets.APP_ID}} | |
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}} | |
permissions: | |
contents: read | |
integration-test: | |
uses: ./.github/workflows/wc-integration-test.yaml | |
permissions: {} |