Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.20.2 to 2.21.0 #21

Bump github.com/onsi/ginkgo/v2 from 2.20.2 to 2.21.0

Bump github.com/onsi/ginkgo/v2 from 2.20.2 to 2.21.0 #21

Workflow file for this run

name: Matrix tests
on:
push:
pull_request:
jobs:
test-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.22.x", "1.23.x", "oldstable", "stable"]
continueOnError: [false]
# include:
# - go: ">=1.23.0-rc.2"
# continueOnError: true
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: make go-dependencies
- run: make go-test
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "junit-report.xml"
if: always()