Skip to content

Maintenence Update (#152) #238

Maintenence Update (#152)

Maintenence Update (#152) #238

Workflow file for this run

name: Go
on:
push:
branches:
- main
paths:
- 'go/**'
- '.github/workflows/go*'
pull_request:
paths:
- 'go/**'
- '.github/workflows/go*'
jobs:
test:
name: Running Go Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v5
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run Test
run: go test ./... -race -cover -v -short
working-directory: go
env:
GOPATH: /home/runner/work/nimbus-openrtb/go