This repository was archived by the owner on Jul 24, 2025. It is now read-only.
Init helm charts #71
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: CI - PR Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| - name: Sanity check repo contents | |
| run: ls -la | |
| - name: Set up go with cache | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.0' | |
| cache-dependency-path: ./go.sum | |
| - name: Run markdown link checker | |
| uses: ./.github/actions/markdown-link-checker | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| args: "--quiet --retry" | |
| - name: Run lint checks | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: 'v2.1.6' | |
| args: "--config=./.golangci.yml" | |
| - name: Run go test | |
| shell: bash | |
| run: | | |
| make test |