Skip to content

chore(deps): bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.19.1 #548

chore(deps): bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.19.1

chore(deps): bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.19.1 #548

name: Tests
on:
push:
branches:
- master
- beta
pull_request:
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.22"
- "1.21"
- "1.20"
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: true
cache: true
id: go
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: matrix.go == '1.22'
with:
files: ./coverage.txt