Skip to content

chore(deps): bump golang.org/x/text from 0.32.0 to 0.33.0 in /backend #1527

chore(deps): bump golang.org/x/text from 0.32.0 to 0.33.0 in /backend

chore(deps): bump golang.org/x/text from 0.32.0 to 0.33.0 in /backend #1527

Workflow file for this run

name: Go testing
on:
push:
paths:
- backend/**
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
services:
redis-db:
image: redis:7
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
with:
submodules: "true"
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
id: go
- name: Get dependencies
run: |
cd backend && go mod download
- name: Test
run: cd backend && go test -v ./... -timeout=20m -p=1 -count=1
env:
TEST_MNEMONIC: ${{ secrets.TEST_MNEMONIC }}