Skip to content

Bump github.com/brianvoe/gofakeit/v7 from 7.8.1 to 7.12.0 #7

Bump github.com/brianvoe/gofakeit/v7 from 7.8.1 to 7.12.0

Bump github.com/brianvoe/gofakeit/v7 from 7.8.1 to 7.12.0 #7

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.25.x']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: go mod download
- name: Run tests
run: go test -v -race -timeout 180s ./...
- name: Run integration tests
run: go test -v -race -timeout 180s -run Integration