From 0e492fad98e766bd1c4721151c3d705d3143e373 Mon Sep 17 00:00:00 2001 From: cmdoret Date: Mon, 9 Dec 2024 16:29:11 +0100 Subject: [PATCH] ci(pr-check): fix output path --- .github/workflows/1-pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/1-pr-check.yml b/.github/workflows/1-pr-check.yml index 2a6759c..e757dea 100644 --- a/.github/workflows/1-pr-check.yml +++ b/.github/workflows/1-pr-check.yml @@ -69,7 +69,7 @@ jobs: echo "running: $IMAGE" docker run -v ./tests/data:/data -v /tmp:/output -e INPUT=bipolar.edf -e OUTPUT=out.tsv $IMAGE HEADER_REGEX='^onset duration eventType confidence channels dateTime recordingDuration$' - if ! [[ $(head -n1 /tmp/output/out.tsv) =~ "$HEADER_REGEX" ]]; then + if ! [[ $(head -n1 /tmp/out.tsv) =~ "$HEADER_REGEX" ]]; then echo "Output does not have the expected header" exit 1 fi