Skip to content

🌱 Bump github.com/onsi/gomega from 1.27.8 to 1.27.9 #69

🌱 Bump github.com/onsi/gomega from 1.27.8 to 1.27.9

🌱 Bump github.com/onsi/gomega from 1.27.8 to 1.27.9 #69

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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
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@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Test
run: make test