Skip to content

chore(deps): Bump github.com/onsi/gomega from 1.34.2 to 1.35.1 #230

chore(deps): Bump github.com/onsi/gomega from 1.34.2 to 1.35.1

chore(deps): Bump github.com/onsi/gomega from 1.34.2 to 1.35.1 #230

Workflow file for this run

name: Unit Test
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
permissions: read-all
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Run unit tests
run: |
make unit-test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
files: ./cover.out
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}