Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.24.0 #174

Bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.24.0

Bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.24.0 #174

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@v5
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"