chore(ci): Add build and ci #4
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: unittest | |
on: | |
push: | |
branches: | |
- "*" | |
permissions: | |
contents: read | |
jobs: | |
go: | |
name: go | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Install dependencies | |
run: | | |
go get . | |
- name: Build | |
run: make build | |
- name: Run Go tests | |
run: make test | |
helm: | |
name: helm | |
runs-on: ubuntu-latest | |
env: | |
HELM_UNITTEST_VERSION: v0.3.5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install helm-unittest | |
run: helm plugin install --version $HELM_UNITTEST_VERSION https://github.com/helm-unittest/helm-unittest.git | |
- name: Run Helm test | |
run: make helm-test | |
kubeconform: | |
name: kubeconform | |
runs-on: ubuntu-latest | |
env: | |
KUBECONFORM_VERSION: 0.6.2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install kubeconform | |
run: | | |
curl -sSLo /tmp/kubeconform.tar.gz "https://github.com/yannh/kubeconform/releases/download/v${KUBECONFORM_VERSION}/kubeconform-linux-amd64.tar.gz" \ | |
&& tar -C /usr/local/bin/ -xzvf /tmp/kubeconform.tar.gz | |
- name: Run Kubeconform test | |
run: make kubeconform |