Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.3 (#112) #187

Bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.3 (#112)

Bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.3 (#112) #187

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"