Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 #600

Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7

Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 #600

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Test
run: make test-ci
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out
- name: Test GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: --skip-publish --snapshot --rm-dist
helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Helm
run: |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
- name: Lint
run: |
cp helm/README.md helm/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' helm/README.md
sed -i '/!\[Version\:/d' helm/README.md.old
diff helm/README.md.old helm/README.md