Skip to content

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

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 #322

Workflow file for this run

name: unit-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-test:
if: github.repository_owner == 'keikoproj'
name: unit-test
runs-on: ubuntu-20.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.21
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: |
go test -coverprofile ./coverage.txt -v ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}