Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.31.0 to 2.32.0 #156

Bump github.com/onsi/ginkgo/v2 from 2.31.0 to 2.32.0

Bump github.com/onsi/ginkgo/v2 from 2.31.0 to 2.32.0 #156

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:
go-versions:
name: Lookup Go versions
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
matrix: ${{ steps.versions.outputs.matrix }}
steps:
- uses: actions/checkout@v7
- uses: arnested/go-version-action@6343454db06c63467680c5dc1f4f382fe9fe6303
id: versions
build:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
needs: go-versions
strategy:
matrix:
version: ${{ fromJSON(needs.go-versions.outputs.matrix) }}
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.version }}
check-latest: true
- name: Build
run: go build -v ./...
- name: Test
run: go run github.com/onsi/ginkgo/v2/ginkgo -v -r --randomize-suites --randomize-all -race