Skip to content

Bump github.com/senzing-garage/go-cmdhelping from 0.2.2 to 0.2.3 #123

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

Bump github.com/senzing-garage/go-cmdhelping from 0.2.2 to 0.2.3 #123

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