Skip to content

Golang

Golang #77

Workflow file for this run

name: Golang
on:
workflow_call:
workflow_dispatch:
pull_request:
paths:
- "go/**"
- ".github/workflows/*go*"
schedule:
- cron: '0 9 * * WED' # https://crontab.guru/#0_9_*_*_WED
jobs:
test_golang:
name: Build/test golang
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install okapi
run: |
brew install trinsic-id/tap/okapi
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Test Golang
run: |
go test vaccine_test.go
working-directory: go/
shell: pwsh