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

Bump github.com/onsi/gomega from 1.33.0 to 1.33.1 #201

Bump github.com/onsi/gomega from 1.33.0 to 1.33.1

Bump github.com/onsi/gomega from 1.33.0 to 1.33.1 #201

Workflow file for this run

name: unit-tests
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set up go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: cache go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: tests
run: |
go test -v ./...