-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from Kuadrant/update-generated-api
update deepcopy
- Loading branch information
Showing
3 changed files
with
46 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
with: | ||
go-version: 1.21.x | ||
id: go | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run make test-unit | ||
run: | | ||
make test-unit | ||
|
@@ -47,7 +47,7 @@ jobs: | |
go-version: 1.21.x | ||
id: go | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
with: | ||
|
@@ -77,7 +77,7 @@ jobs: | |
with: | ||
go-version: 1.21.x | ||
id: go | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Verify manifests | ||
run: make verify-manifests | ||
verify-bundle: | ||
|
@@ -90,7 +90,7 @@ jobs: | |
go-version: 1.21.x | ||
id: go | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Run make verify-bundle | ||
run: | | ||
make verify-bundle | ||
|
@@ -104,7 +104,7 @@ jobs: | |
go-version: 1.21.x | ||
id: go | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Run make verify-fmt | ||
run: | | ||
make verify-fmt | ||
|
@@ -118,7 +118,7 @@ jobs: | |
go-version: 1.21.x | ||
id: go | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Run go mod tidy | ||
run: | | ||
go mod tidy | ||
|
@@ -135,6 +135,20 @@ jobs: | |
go-version: 1.21.x | ||
id: go | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Go Lint | ||
run: make run-lint | ||
verify-generate: | ||
name: Verify generate | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go 1.21.x | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
id: go | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Verify generate command | ||
run: | | ||
make verify-generate |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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