Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.

Init helm charts

Init helm charts #81

Workflow file for this run

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