2024-06-14 18:28:39 +00: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
|
2024-09-23 20:52:19 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2024-06-14 18:28:39 +00:00
|
|
|
- name: Run SSH integration tests
|
|
|
|
run: |
|
|
|
|
make sshintegrationtest
|