Upgrade crd-ref-doc (#296) #648
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
# Checks are executed on each push and pull_request | |
name: Checks | |
on: ["push"] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
# This step uses Github's checkout-action: https://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
# Instead of using our own CI, we uses https://golangci-lint.run/ | |
# It combines 48 linters and execute them in parallel | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.59.1 | |
args: --timeout 5m | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
# This step uses Github's checkout-action: https://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
# Execute tests | |
- name: Execute tests | |
run: make test | |
shell: bash | |
# Export coverage | |
- name: Export coverage | |
if: github.event == 'pull_request' | |
run: go tool cover -html=cover.out -o=coverage.html | |
# Upload artifacts | |
- name: Upload artifacts | |
if: github.event == 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage.html |