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
|
2022-03-16 19:46:16 +00:00
|
|
|
uses: actions/setup-go@v3
|
2020-09-09 19:11:46 +00:00
|
|
|
with:
|
2022-08-02 18:34:03 +00:00
|
|
|
go-version: 1.19
|
2020-09-09 19:11:46 +00:00
|
|
|
|
|
|
|
- name: Check out code
|
2022-03-22 22:56:34 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-09-09 19:11:46 +00:00
|
|
|
|
|
|
|
- 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
|