Skip to content

#3 save point

#3 save point #12

Workflow file for this run

# Based on
# - https://github.com/marketplace/actions/setup-go-environment
name: go-test-darwin.yaml
on: [push]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
go: ["1.20"]
name: Go ${{ matrix.go }} - darwin
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run go test
run: go test -v -p 1 ./...