Skip to content

make-go-github-file.yaml: cmd/github.go@0.2.1 (#43) #45

make-go-github-file.yaml: cmd/github.go@0.2.1 (#43)

make-go-github-file.yaml: cmd/github.go@0.2.1 (#43) #45

Workflow file for this run

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