Fix K3s configuration issues #13
Workflow file for this run
This file contains hidden or 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: pull request | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| pr-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Commitsar check | |
| uses: aevea/commitsar@v0.20.2 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.x | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.5.0 | |
| - name: Build to test | |
| run: | | |
| make autok3s build only | |
| bin/$(go env GOOS)/$(go env GOARCH)/autok3s version |