Release 0.1.8 #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- uses: actions/cache@v3 | |
with: | |
path: ~/go | |
key: cache-${{ runner.os }}-${{ runner.arch }} | |
- name: Lint | |
run: make generate lint && git diff --exit-code | |
- name: Manifests | |
run: make REGISTRY_BASE=nowhere.io/nobody manifests | |
- name: Test | |
run: make test |