mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
4b1e02057a
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
29 lines
541 B
YAML
29 lines
541 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@v2.1.5
|
|
with:
|
|
go-version: 1.18
|
|
|
|
- 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
|