Skip to content

Update go-tests.yml

Update go-tests.yml #4

Workflow file for this run

name: Run Go Tests in Server Directory
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23
- name: Run tests in server directory
run: |
cd server
go mod download
go test ./... -v