This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
build(deps): bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.35 to 1.16.1 #65
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: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- "charts/**" | |
- "docs/**" | |
- "hack/**" | |
- "logos/**" | |
- "rfcs/**" | |
- "tools/**" | |
- "*.md" | |
push: | |
branches: | |
- main | |
jobs: | |
test-1x-2x: | |
name: "Controller Tests: 10->29" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0000[12]" | |
test-3x-5x: | |
name: "Controller Tests: 30->59" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0000[345]" | |
test-6x-9x: | |
name: "Controller Tests: 60->99" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0000[6789]" | |
test-1xx: | |
name: "Controller Tests: 1xx" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0001" | |
test-2xx: | |
name: "Controller Tests: 2xx" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0002" | |
test-3xx: | |
name: "Controller Tests: 3xx" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0003" | |
test-99xx: | |
name: "Controller Tests: 99xx" | |
uses: ./.github/workflows/targeted-test.yaml | |
with: | |
pattern: "^Test_0099" | |
non-numbered: | |
name: "Controller Tests: Non-numbered" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Restore Go cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.x | |
- name: Setup Terraform | |
run: | | |
export TF_VERSION=1.3.9 | |
wget https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip | |
unzip -q terraform_${TF_VERSION}_linux_amd64.zip | |
mv terraform $(which terraform) | |
terraform --version | |
- name: Setup Kustomize | |
if: "!github.event.pull_request.head.repo.fork" | |
uses: fluxcd/pkg/actions/kustomize@main | |
- name: Run tests | |
run: | | |
make install-envtest | |
make normal-controller-test | |
internal: | |
name: "Internal Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Restore Go cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.x | |
- name: Setup Terraform | |
run: | | |
export TF_VERSION=1.3.9 | |
wget https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip | |
unzip -q terraform_${TF_VERSION}_linux_amd64.zip | |
mv terraform $(which terraform) | |
terraform --version | |
- name: Setup Kustomize | |
if: "!github.event.pull_request.head.repo.fork" | |
uses: fluxcd/pkg/actions/kustomize@main | |
- name: Run tests | |
run: | | |
make install-envtest | |
make test-internal |