Skip to content

build(deps): bump golang.org/x/text from 0.20.0 to 0.24.0 in /server #780

build(deps): bump golang.org/x/text from 0.20.0 to 0.24.0 in /server

build(deps): bump golang.org/x/text from 0.20.0 to 0.24.0 in /server #780

Workflow file for this run

name: Go testing
on:
push:
paths:
- server/**
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: "true"
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
id: go
- name: Get dependencies
run: |
cd server && go mod download
- name: Test
run: cd server && go test -v ./...