Skip to content

Bump github.com/onsi/gomega in the ginkgo-gomega group #203

Bump github.com/onsi/gomega in the ginkgo-gomega group

Bump github.com/onsi/gomega in the ginkgo-gomega group #203

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@697236828ba755d1949ca46316abf0b4d9f6a205
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@v7
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