f5bd7d0774
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
374 B
YAML
16 lines
374 B
YAML
name: Verify
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
verify:
|
|
name: Verify
|
|
runs-on: ubuntu-24.04
|
|
environment: production
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: gacts/install-hurl@v1
|
|
- run: hurl --test --report-tap verification.tap test/prod.hurl
|
|
env:
|
|
HURL_api_token: ${{ secrets.API_TOKEN }}
|
|
- uses: pcolby/tap-summary@v1
|