Smoke Tests #2
This file contains hidden or 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: Smoke Tests | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| base_url: | |
| description: "Base URL for deployed endpoint (example: https://geps.dev)" | |
| required: true | |
| type: string | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run smoke tests | |
| env: | |
| BASE_URL: ${{ inputs.base_url }} | |
| run: bash ./scripts/smoke.sh |