2021-07-23 11:00:07 +02:00
|
|
|
name: Validate
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
env:
|
2024-08-28 15:00:06 +02:00
|
|
|
GO_VERSION: '1.23'
|
|
|
|
GOLANGCI_LINT_VERSION: v1.60.3
|
2024-09-13 05:40:04 -04:00
|
|
|
MISSPELL_VERSION: v0.6.0
|
2021-07-23 11:00:07 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
validate:
|
2024-04-22 17:04:05 +02:00
|
|
|
runs-on: ubuntu-latest
|
2021-07-23 11:00:07 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 17:00:07 +01:00
|
|
|
uses: actions/checkout@v4
|
2021-07-23 11:00:07 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-01-09 17:00:07 +01:00
|
|
|
- name: Set up Go ${{ env.GO_VERSION }}
|
|
|
|
uses: actions/setup-go@v5
|
2021-07-23 11:00:07 +02:00
|
|
|
with:
|
2024-01-09 17:00:07 +01:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-07-23 11:00:07 +02:00
|
|
|
|
|
|
|
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
|
|
|
|
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
|
|
|
|
|
2024-09-13 05:40:04 -04:00
|
|
|
- name: Install misspell ${{ env.MISSPELL_VERSION }}
|
|
|
|
run: curl -sfL https://raw.githubusercontent.com/golangci/misspell/master/install-misspell.sh | sh -s -- -b $(go env GOPATH)/bin ${MISSPELL_VERSION}
|
2021-07-23 11:00:07 +02:00
|
|
|
|
2021-09-15 10:36:14 +02:00
|
|
|
- name: Avoid generating webui
|
2022-02-18 15:44:08 +01:00
|
|
|
run: touch webui/static/index.html
|
2021-09-15 10:36:14 +02:00
|
|
|
|
2021-07-23 11:00:07 +02:00
|
|
|
- name: Validate
|
|
|
|
run: make validate
|
|
|
|
|
|
|
|
validate-generate:
|
2024-04-22 17:04:05 +02:00
|
|
|
runs-on: ubuntu-latest
|
2021-07-23 11:00:07 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 17:00:07 +01:00
|
|
|
uses: actions/checkout@v4
|
2021-07-23 11:00:07 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-01-09 17:00:07 +01:00
|
|
|
- name: Set up Go ${{ env.GO_VERSION }}
|
|
|
|
uses: actions/setup-go@v5
|
2021-07-23 11:00:07 +02:00
|
|
|
with:
|
2024-01-09 17:00:07 +01:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-07-23 11:00:07 +02:00
|
|
|
|
|
|
|
- name: go generate
|
|
|
|
run: |
|
2024-01-17 11:12:05 +01:00
|
|
|
make generate
|
2021-07-23 11:00:07 +02:00
|
|
|
git diff --exit-code
|
|
|
|
|
|
|
|
- name: go mod tidy
|
|
|
|
run: |
|
|
|
|
go mod tidy
|
|
|
|
git diff --exit-code
|
|
|
|
|
|
|
|
- name: make generate-crd
|
|
|
|
run: |
|
|
|
|
make generate-crd
|
|
|
|
git diff --exit-code
|