Skip to content

Improve Helm (#81)

Improve Helm (#81) #92

Workflow file for this run

name: Unikorn Merge
on:
push:
branches:
- main
tags-ignore:
- '*'
env:
GO_VERSION: 1.21.1
jobs:
Coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install Helm
uses: azure/setup-helm@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Touch
run: make touch
- name: Unit Test
run: make test-unit
- name: Run Codecov
uses: codecov/codecov-action@v3
env:
token: ${{ secrets.CODECOV_TOKEN }}