Skip to content

Abstract Authorization #14

Abstract Authorization

Abstract Authorization #14

Workflow file for this run

name: Unikorn Push
on:
push:
branches-ignore:
- main
tags-ignore:
- '*'
env:
GO_VERSION: 1.21.1
jobs:
Static:
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: Touch
run: make touch
- name: License Checker
run: make license
Runtime:
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: Golang CI/Helm Lint
run: make lint
- name: Build CRDs
run: make charts/core/crds
- name: Build Generated Code
run: make generate
- name: Generated Code Checked In
run: '[[ -z $(git status --porcelain) ]]'
- name: Unit Test
run: make test-unit
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: code-coverage
path: cover.html
- name: Run Codecov
uses: codecov/codecov-action@v3
env:
token: ${{ secrets.CODECOV_TOKEN }}