Skip to content

protocol, more like protolol #21

protocol, more like protolol

protocol, more like protolol #21

name: Automated Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
env:
MANIFOLD_API_KEY: ${{ secrets.MANIFOLD_API_KEY }}
steps:
- uses: actions/checkout@v3
- name: Display Secret Value
run: echo $MANIFOLD_API_KEY
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...