Merge pull request #329 from leanix/license-update-to-apache #489
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: leanix-k8s-connector | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- feature/** | |
- bugfix/** | |
paths-ignore: | |
- "helm/**" | |
- "**README.md" | |
- "**CHANGELOG.md" | |
- "**publishNewHelmChartVersion.sh" | |
- "integration-api-default-config.json" | |
jobs: | |
main: | |
name: leanix-k8s-connector | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- name: Build and test | |
run: | | |
VERSION=$(make version) | |
go install github.com/vektra/mockery/[email protected] | |
make build gen | |
make test |