ci: regenerate code for version 0.44.2 triggered by @thogarty #90
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: Generate and lint code | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.19.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Verify Patches | |
run: make patch-all | |
- name: Generate | |
run: | | |
make generate-all | |
# Expect all changes to be accounted for | |
! git status --porcelain | grep . | |
- name: Determine golangci-lint version | |
id: golangcilint | |
run: | | |
line=$(grep GOLANGCI_LINT_VERSION= Makefile) | |
version=$(echo ${line} | cut -d = -f2) | |
echo "version=$version" >> "$GITHUB_OUTPUT" | |
- name: Lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: ${{ steps.golangcilint.outputs.version }} | |
skip-cache: true |