.github: add CI tests

Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
David Crawshaw
2023-03-01 08:26:06 -08:00
committed by David Crawshaw
parent 13c8b27dd1
commit 0f378c01bd

18
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
- name: Test
run: go test -v ./...