Feature 1635 - added labels to generate HPA #390
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: lint | |
on: | |
pull_request: | |
jobs: | |
lint: | |
strategy: | |
matrix: | |
go: [1.18, 1.19] | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install golang" | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: "Run go vet" | |
run: "go vet ./pkg/..." |