Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.25.3 to 2.26.0 #188

Bump github.com/onsi/ginkgo/v2 from 2.25.3 to 2.26.0

Bump github.com/onsi/ginkgo/v2 from 2.25.3 to 2.26.0 #188

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
- name: Run Test
run: |
go install github.com/onsi/ginkgo/v2/ginkgo@v2
ginkgo -r -v --label-filter="!integration"