Skip to content

Bump github.com/onsi/ginkgo/v2 in the ginkgo-and-gomega group #266

Bump github.com/onsi/ginkgo/v2 in the ginkgo-and-gomega group

Bump github.com/onsi/ginkgo/v2 in the ginkgo-and-gomega group #266

Workflow file for this run

name: Test
on:
push:
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=5m
test:
runs-on: ubuntu-latest
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: make test
- name: SonarCloud Scan
if: ${{ env.SONAR_TOKEN != '' }}
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}