2024-06-14 13:28:39 -05:00
|
|
|
# Run the ssh integration tests with `make sshintegrationtest`.
|
|
|
|
# These tests can also be running locally.
|
|
|
|
name: "ssh-integrationtest"
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "ssh/**"
|
|
|
|
- "tempfork/gliderlabs/ssh/**"
|
|
|
|
- ".github/workflows/ssh-integrationtest"
|
|
|
|
jobs:
|
|
|
|
ssh-integrationtest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2025-01-28 15:03:13 -07:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-06-14 13:28:39 -05:00
|
|
|
- name: Run SSH integration tests
|
|
|
|
run: |
|
|
|
|
make sshintegrationtest
|