Skip to content

Fixed power readings with newer drivers readings nvsmi_device_v12.dtd #4

Fixed power readings with newer drivers readings nvsmi_device_v12.dtd

Fixed power readings with newer drivers readings nvsmi_device_v12.dtd #4

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
strategy:
matrix:
go-version: [1.18]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@b22fbbc2921299758641fab08929b4ac52b32923
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Check formatting
if: ${{ matrix.go-version == '1.18' && matrix.os == 'ubuntu-latest' }}
run: diff -u <(echo -n) <(gofmt -d .)
- name: Check Go modules
if: ${{ matrix.go-version == '1.18' && matrix.os == 'ubuntu-latest' }}
run: |
go mod tidy
git diff --exit-code
- name: Build (cross-compile)
if: matrix.os == 'ubuntu-latest'
run: |
GOOS=darwin go build ./...
GOOS=dragonfly go build ./...
GOOS=freebsd go build ./...
GOOS=linux go build ./...
GOOS=netbsd go build ./...
GOOS=openbsd go build ./...
GOOS=solaris go build ./...
GOOS=windows go build ./...
- name: Test (native)
run: go test -v ./...