feat: add test workflow and action to run the acceptance tests against pass-docker #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
env: | |
TIMEOUT_LENGTH: 120000 | |
jobs: | |
run_acceptance_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout pass-acceptance-testing | |
uses: actions/checkout@v3 | |
- name: Run acceptance tests | |
uses: ./.github/actions/acceptance-test | |
with: | |
timeouts: $TIMEOUT_LENGTH |