Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.21.0 (#91) #288

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.21.0 (#91)

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.21.0 (#91) #288

Workflow file for this run

name: Build and test PR
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
mod:
runs-on: ubuntu-latest
name: Check modules
steps:
- uses: actions/setup-go@v5
with:
go-version: '>=1.23.2'
check-latest: true
- uses: actions/checkout@v4
- run: go mod tidy && git diff --exit-code go.mod go.sum
build:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '1.23' ]
name: Go ${{ matrix.version }}
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v4
- run: go vet ./...
- run: go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-suites --race --trace --fail-on-pending --keep-going