build(deps): bump github.com/coredns/coredns from 1.13.1 to 1.13.2 #4704
Workflow file for this run
This file contains hidden or 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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 | |
| - uses: ./.github/actions/setup | |
| - run: make gen-build gen-clean gen-client-go gen-external-dns gen-go-tidy | |
| - uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v8 | |
| with: | |
| args: --timeout 5000s | |
| test-unittest: | |
| name: Test (unittest) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 | |
| - uses: ./.github/actions/setup | |
| - run: make test | |
| - uses: ./.github/actions/test-results | |
| if: ${{ always() }} | |
| with: | |
| flags: unittest | |
| test-bench: | |
| name: Test (bench) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 | |
| - uses: ./.github/actions/setup | |
| - run: make bench | |
| - uses: ./.github/actions/test-results | |
| if: ${{ always() }} | |
| with: | |
| flags: bench | |
| test-e2e: | |
| name: Test (e2e) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 | |
| - uses: ./.github/actions/setup | |
| - run: make test-e2e-container-build | |
| - run: make test-e2e | |
| - uses: ./.github/actions/test-results | |
| if: ${{ always() }} | |
| with: | |
| flags: e2e | |
| test-mark: | |
| if: always() | |
| needs: | |
| - lint | |
| - test-unittest | |
| - test-e2e | |
| - test-bench | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |