Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2 #72

build(deps): bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2

build(deps): bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2 #72

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
go:
- '1.20'
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Go test
run: make test
- name: Go build
run: make build