Skip to content

StackExchange/wmi is archived, replace with active fork #5030

StackExchange/wmi is archived, replace with active fork

StackExchange/wmi is archived, replace with active fork #5030

Workflow file for this run

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
- name: Run vet
run: go vet ./...
- name: Test
run: go test -v ./...