Skip to content

Bump github.com/senzing-garage/go-cmdhelping from 0.2.3 to 0.3.0 #98

Bump github.com/senzing-garage/go-cmdhelping from 0.2.3 to 0.3.0

Bump github.com/senzing-garage/go-cmdhelping from 0.2.3 to 0.3.0 #98

Workflow file for this run

name: go test darwin
on: [pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
go-test-darwin:
name: "go test with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [macos-13]
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 -coverprofile=./cover.out -covermode=atomic -coverpkg=./... ./...
- name: Store coverage file
uses: actions/upload-artifact@v4
with:
name: cover.out
path: ./cover.out
coverage:
name: coverage
needs: go-test-darwin
uses: senzing-factory/build-resources/.github/workflows/go-coverage.yaml@v2