2020-09-09 19:11:46 +00:00
|
|
|
name: depaware
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up Go
|
2021-09-22 22:36:01 +00:00
|
|
|
uses: actions/setup-go@v2.1.4
|
2020-09-09 19:11:46 +00:00
|
|
|
with:
|
2021-09-02 19:28:03 +00:00
|
|
|
go-version: 1.17
|
2020-09-09 19:11:46 +00:00
|
|
|
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: depaware tailscaled
|
|
|
|
run: go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscaled
|
|
|
|
|
|
|
|
- name: depaware tailscale
|
|
|
|
run: go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscale
|