Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.1 #365

build(deps): bump github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.1

build(deps): bump github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.1 #365

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.23'
- 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
uses: codecov/codecov-action@v5
with:
files: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}