Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.16.0 #325

build(deps): bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.16.0

build(deps): bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.16.0 #325

Workflow file for this run

name: test
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Run go mod tidy
run: go mod tidy
- name: Run Test
run: go test ./... -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)