Skip to content

🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.1 #108

🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.1

🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.1 #108

Workflow file for this run

name: Test
on:
pull_request:
paths:
- '.github/workflows/**'
- '**.go'
- 'Makefile'
- 'go.**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/github.com/${{ github.repository }}
steps:
- name: Checkout code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
path: ./src/github.com/${{ github.repository }}
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Cache Go modules
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Test
run: make test