Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.1 in the onsi grou… #99

Bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.1 in the onsi grou…

Bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.1 in the onsi grou… #99

Workflow file for this run

name: Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
go:
name: Go Tests
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Test
run: make test-cover
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverprofile.out
lint:
name: Go Lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
skip-cache: true
helm:
name: Helm Checks
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm
run: |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Set up Tools
run: make semver helm-docs
- name: Lint
run: |
cp chart/README.md chart/README.md.old
make helm-lint
- name: Check chart/README.md is correctly generated with 'make docs'
run: |
# ignore version as it is updated during build
sed -i '/!\[Version\:/d' chart/README.md
sed -i '/!\[Version\:/d' chart/README.md.old
diff chart/README.md.old chart/README.md
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (lint)
run: ct lint --config .github/linters/ct.yaml
- name: Template
run: make helm-template