diff options
| author | Percy Wegmann <percy@tailscale.com> | 2024-04-26 19:29:59 -0500 |
|---|---|---|
| committer | Percy Wegmann <percy@tailscale.com> | 2024-04-27 14:54:26 -0500 |
| commit | cc0bd0229dd03eee73df3e7adb464bcc8f14ca8f (patch) | |
| tree | ba2f3c823b94bc6f502bb4652e71ff5079cf1528 /.github/workflows/test.yml | |
| parent | fee3aeb7f2ce6562234acac26bbf1c1fba9e0d14 (diff) | |
| download | tailscale-ox/11854.tar.xz tailscale-ox/11854.zip | |
ssh/tailssh: add integration tests for sshox/11854
Adds basic integration tests for beIncubator that can run on:
- MacOS
- Ubuntu
- Fedora
Updates #11854
Signed-off-by: Percy Wegmann <percy@tailscale.com>
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2525d0a1..f3942e6ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -575,6 +575,16 @@ jobs: env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + ssh: + runs-on: ubuntu-22.04 + steps: + - name: checkout + uses: actions/checkout@v4 + - name: run ssh tests + run: | + export PATH=$(./tool/go env GOROOT)/bin:$PATH + make sshintegrationtest + check_mergeability: if: always() runs-on: ubuntu-22.04 |
