This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
introducing cue for product configuration definition and validation #227
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: Check for diff after manifest and generated targets | |
on: | |
pull_request: {} | |
jobs: | |
check: | |
name: Check for diff | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Make manifests && generate | |
run: | | |
make manifests && make generate | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: '${{ github.workspace }}/go.mod' | |
- name: Restore Go cache | |
uses: actions/cache@v3 | |
with: | |
path: /home/runner/work/_temp/_github_home/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: go mod tidy | |
run: | | |
go mod tidy | |
- name: Check for diff | |
run: | | |
git diff --exit-code --shortstat |