✨ (go/v4) Add GitHub Actions #1489
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
# Copyright 2023 The Caramello-io Authors. | |
name: Sample Testdata Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: "Testdata - make test" | |
runs-on: ubuntu-latest | |
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) | |
steps: | |
- name: Clone the code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '~1.22' | |
- name: Remove pre-installed kustomize | |
run: sudo rm -f /usr/local/bin/kustomize | |
- name: Run make test for project-v4-with-deploy-image | |
run: cd testdata/project-v4-with-deploy-image && go mod tidy && make all && make test | |
- name: Run make test for project-v4-multigroup-with-deploy-image | |
run: cd testdata/project-v4-multigroup-with-deploy-image && go mod tidy && make all && make test | |
lint: | |
name: "Testdata - Lint" | |
runs-on: ubuntu-latest | |
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push | |
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '~1.22' | |
- name: Clone the code | |
uses: actions/checkout@v4 | |
- name: Run linter | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.57 | |
working-directory: testdata/project-v4-with-deploy-image | |
args: --config .golangci.yml ./... | |
skip-cache: true # first lint action will handle | |
- name: Run linter | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.57 | |
working-directory: testdata/project-v4-multigroup-with-deploy-image | |
args: --config .golangci.yml ./... | |
skip-cache: true # first lint action will handle |