ssh-integrationtest.yml 648 B

1234567891011121314151617181920212223
  1. # Run the ssh integration tests with `make sshintegrationtest`.
  2. # These tests can also be running locally.
  3. name: "ssh-integrationtest"
  4. concurrency:
  5. group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
  6. cancel-in-progress: true
  7. on:
  8. pull_request:
  9. paths:
  10. - "ssh/**"
  11. - "tempfork/gliderlabs/ssh/**"
  12. - ".github/workflows/ssh-integrationtest"
  13. jobs:
  14. ssh-integrationtest:
  15. runs-on: ubuntu-latest
  16. steps:
  17. - name: Check out code
  18. uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
  19. - name: Run SSH integration tests
  20. run: |
  21. make sshintegrationtest