This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
ci: fix hurl integration tests #233
Workflow file for this run
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: Check | |
on: | |
workflow_dispatch: {} | |
pull_request: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
api: | |
name: Test API | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
run: docker compose up --quiet-pull --wait --wait-timeout 300 | |
- name: hurl | |
run: docker compose run --quiet-pull integration-tests | |
- name: dump logs | |
run: docker compose logs | |
if: failure() | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() | |
with: | |
check_name: Results | |
report_paths: tests/api/report.xml |