mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
22ed3c503e
See https://github.com/tailscale/depaware Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
29 lines
537 B
YAML
29 lines
537 B
YAML
name: depaware
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.15
|
|
|
|
- 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
|