From deccf3e55dc78ec202672910220de57ee3057656 Mon Sep 17 00:00:00 2001 From: bp Date: Mon, 6 Jan 2025 17:35:57 +0100 Subject: [PATCH] CI/CD: Fix the push-test workflow syntax issue --- .github/workflows/push-test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 62fb7ff..f4d1e36 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -37,7 +37,8 @@ jobs: uses: actions/upload-artifact@v4 with: name: test-report - path: tests/pytest_report.html - path: examples/pytest_examples_report.html + path: | + tests/pytest_report.html + examples/pytest_examples_report.html \ No newline at end of file