.github: add CI tests
Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
parent
13c8b27dd1
commit
0f378c01bd
1 changed files with 18 additions and 0 deletions
18
.github/workflows/test.yml
vendored
Normal file
18
.github/workflows/test.yml
vendored
Normal 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 ./...
|
||||
Loading…
Add table
Add a link
Reference in a new issue