Skip to content

7.55.3 final PR

7.55.3 final PR #729

Workflow file for this run

name: "Gohai Test"
# Only run the tests if pkg/gohai was changed
on:
push:
branches:
- main
- "[0-9]+.[0-9]+.x"
paths:
- "pkg/gohai/**"
pull_request:
paths:
- "pkg/gohai/**"
jobs:
gohai_test:
strategy:
matrix:
# Use oldest and latest available ubuntu, macos and windows
os:
[
ubuntu-20.04,
ubuntu-latest,
macos-11,
macos-latest,
windows-2019,
windows-latest,
]
# Run tests with both the agent's version and gohai's pinned version
go-file: [.go-version, pkg/gohai/go.mod]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: ${{ matrix.go-file }}
- name: Test
run: cd pkg/gohai && go test -tags=test ./...