Skip to content

don't display nodes until player's first game #19

don't display nodes until player's first game

don't display nodes until player's first game #19

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic
- name: Convert coverage to html
run: go tool cover -html=coverage.txt -o coverage.html