Skip to content

Update module github.com/nicksnyder/go-i18n/v2 to v2.5.1 (#478) #1588

Update module github.com/nicksnyder/go-i18n/v2 to v2.5.1 (#478)

Update module github.com/nicksnyder/go-i18n/v2 to v2.5.1 (#478) #1588

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.23'
- name: Set up gotestfmt
uses: GoTestTools/gotestfmt-action@v2
with:
# Optional: pass GITHUB_TOKEN to avoid rate limiting.
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build and test using make file
run: |
set -euo pipefail
make build_setup
go test -json -v ./... 2>&1 | gotestfmt -hide all
make build_cleanup