drive-health-metrics/.github/workflows/test_golang.yaml
James Coleman bea4a1fe49
Some checks failed
Go package / build (push) Has been cancelled
first commit
2026-07-23 13:27:31 -05:00

21 lines
322 B
YAML

name: Go package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...