Bump github.com/onsi/ginkgo/v2 from 2.20.2 to 2.21.0 #767
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
on: pull_request | |
name: PR Review | |
jobs: | |
review-go: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: check if go.mod and go.sum are tidy | |
run: make depscheck | |
- name: check code format | |
run: make fmtcheck | |
- name: check code quality | |
run: make go-lint | |
- name: run unit tests | |
run: make test | |
review-docker: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: reviewdog/action-hadolint@v1 | |
with: | |
reporter: github-pr-review | |
level: info | |
filter_mode: file | |