Skip to content

Bump golang.org/x/text from 0.31.0 to 0.32.0 #1995

Bump golang.org/x/text from 0.31.0 to 0.32.0

Bump golang.org/x/text from 0.31.0 to 0.32.0 #1995

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.25.x]
runs-on: ${{ matrix.os }}
env:
TEST_MONGODB_URL: mongodb://localhost:27017/minhareceita?authSource=admin
TEST_POSTGRES_URL: postgresql://postgres:postgres@localhost/postgres
GOEXPERIMENT: jsonv2
steps:
- uses: actions/checkout@v4
- uses: ikalnytskyi/action-setup-postgres@v7
with:
postgres-version: 16
- uses: ankane/setup-mongodb@v1
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- run: go test ./...
if: matrix.os == 'windows-latest'
- run: go test --race ./...
if: matrix.os == 'ubuntu-latest'