Skip to content

Bump github.com/onsi/gomega from 1.27.10 to 1.29.0 #25

Bump github.com/onsi/gomega from 1.27.10 to 1.29.0

Bump github.com/onsi/gomega from 1.27.10 to 1.29.0 #25

Workflow file for this run

name: test Go using version matrix
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20.x", "1.21.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-pkg-cache: true
- run: go get github.com/onsi/ginkgo/v2@latest && go install github.com/onsi/ginkgo/v2/ginkgo
- run: $(go env GOPATH)/bin/ginkgo --junit-report=junit-report.xml ./...
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "junit-report.xml"
if: always()