Skip to content

Allow STD and BCP to be easily referenced #308

Allow STD and BCP to be easily referenced

Allow STD and BCP to be easily referenced #308

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.21.x
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...