Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.0 #305

Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.0

Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.0 #305

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...