chore: change flag name to CTP #393
Workflow file for this run
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: test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: Continuous Integration | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # pin@v5 | |
with: | |
go-version: "1.22" | |
- name: Get dependencies | |
run: go mod download | |
- name: Build | |
run: make | |
- name: Run Unit-Tests | |
run: make test-parallel | |
- name: Generate code coverage artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage | |
path: cover.out | |
- name: Upload code coverage information to codecov.io | |
uses: codecov/[email protected] | |
with: | |
file: cover.out | |
fail_ci_if_error: false | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
codegen: | |
name: Check Codegen | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # pin@v4 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # pin@v5 | |
with: | |
go-version: "1.22" | |
- name: go mod tidy | |
run: | | |
go mod tidy | |
if ! diff=$(git diff --exit-code --unified=0 -- go.sum); then | |
line=$(echo "$diff" | sed -nr 's/@@ -([0-9]+),.*/\1/p' | head -n 1 | tr -d '\n') | |
echo "::error file=go.sum,line=$line::go.sum is out of date. Run 'go mod tidy' and commit the changes." | |
exit 1 | |
fi | |
- name: make build-installer | |
run: | | |
make build-installer | |
if ! git diff --exit-code; then | |
echo "::error ::Manifests are out of date. Run 'make build-installer' and commit the changes." | |
exit 1 | |
fi |