Skip to content

Use the right kind binary #211

Use the right kind binary

Use the right kind binary #211

Workflow file for this run

name: Linters
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-helm:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run helm linter
run: make lint-helm
lint-go:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Run go linter
run: make lint