Skip to content

Use GitHub Container Registry to Store Helm Chart #55

Use GitHub Container Registry to Store Helm Chart

Use GitHub Container Registry to Store Helm Chart #55

name: Continuous Integration
on: pull_request
jobs:
go:
name: Go
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
args: --config=./.github/golangci.yaml
skip-cache: true
- name: Test
run: |
make test
- name: Build
run: |
make build