🌱 Bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.2 #78
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: pullrequests | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.58.1 | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Run Tests | |
run: make test | |
validate-generated: | |
name: validate generated files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: run code generators | |
run: make generate | |
- name: run manifest generators | |
run: make manifests | |
- name: ensure no files changed | |
run: git diff --exit-code || (echo "Generated files are out of sync. Please run 'make generate manifests' and commit the updated files."; exit 1) |