Skip to content

Bump github.com/spf13/cast from 1.5.1 to 1.6.0 #2214

Bump github.com/spf13/cast from 1.5.1 to 1.6.0

Bump github.com/spf13/cast from 1.5.1 to 1.6.0 #2214

Workflow file for this run

name: Go
on:
pull_request:
branches: [master]
jobs:
UnitTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test api
run: go test -v ./api/...
- name: Test cmd
run: go test -v ./cmd/...
- name: Test controllers
run: go test -v ./controllers/...
- name: Test pkg
run: go test -v ./pkg/...
- name: Test mongotester
run: go test -v ./test/e2e/util/mongotester/...