Skip to content

Bump github.com/onsi/gomega from 1.28.0 to 1.28.1 #25

Bump github.com/onsi/gomega from 1.28.0 to 1.28.1

Bump github.com/onsi/gomega from 1.28.0 to 1.28.1 #25

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- '**.md'
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '**.md'
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Go dependencies
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Execute unit test
run: make test