mirror of
https://github.com/tailscale/tailscale.git
synced 2026-07-15 10:03:09 -04:00
Add a .policy-tests.yml file with tests exercising the policy that was just landed: the tailcfg/ control-protocol-owners gate, the "policybot-override:" comment escape hatch (including defaults-regression guards so the override rule does not silently accept a normal review or a 👍 comment), and the always-on "any tailscale/dev review" baseline. Updates tailscale/corp#13972 Change-Id: I42afb06b0771658c803512cb5de4701450c8a704 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: policybot-test
|
|
|
|
env:
|
|
HOME: ${{ github.workspace }}
|
|
GOMODCACHE: ${{ github.workspace }}/gomodcache
|
|
CMD_GO_USE_GIT_HASH: "true"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "release-branch/*"
|
|
paths:
|
|
- .github/workflows/policybot-test.yml
|
|
- .policy.yml
|
|
- .policy-tests.yml
|
|
- go.mod
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/policybot-test.yml
|
|
- .policy.yml
|
|
- .policy-tests.yml
|
|
- go.mod
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
policybot-test:
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
path: src
|
|
|
|
# The version of github.com/tailscale/policybottest used here is
|
|
# pinned by go.mod via internal/tooldeps/tooldeps.go; bump it with
|
|
# "go get github.com/tailscale/policybottest@<sha> && go mod tidy".
|
|
- name: Run policy tests
|
|
working-directory: src
|
|
run: ./tool/go run github.com/tailscale/policybottest -policy .policy.yml -tests .policy-tests.yml
|