Use less aggressive filtering for pulling ac addresses since Intel BE200s don't show up as physical adapters. The PCI filter should accomplish the same thing. Intel says the BE200 not showing up as a physical adapter in WMI is WAI and won't be changed. #441
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Tests | |
on: [push, pull_request] | |
jobs: | |
go_tests: | |
runs-on: windows-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22.x | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
# false positives: https://github.com/golang/go/issues/41205 | |
#- name: Run vet | |
# run: go vet ./... | |
- name: Test | |
run: go test -v ./... |