Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

chore: if you copyrighted it then you better put a name on it, doot d… #46

chore: if you copyrighted it then you better put a name on it, doot d…

chore: if you copyrighted it then you better put a name on it, doot d… #46

Workflow file for this run

name: tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.12.0
- name: Initialize
run: make init
- name: Build
run: go build -v ./...
- name: Test
run: make test