From b04f30cc4d531397746bf92f37b0dd7a2a529fe3 Mon Sep 17 00:00:00 2001 From: Luis Moris Fernandez Date: Wed, 5 Jun 2024 11:44:04 +0200 Subject: [PATCH] fix test.yml templates/scripts/test_qc_pkg.R is a file therefore it cannot be used throught the shell which is equivalente to Rscript -e "templates/scripts/test_qc_pkg.R" --- .github/workflows/test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 933b991..10e227a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,9 +36,8 @@ jobs: - name: Install package dependencies 📄 uses: boehringer-ingelheim/dv.templates/.github/actions/dependencies@main - - name: Test and QC 🧪 - run: templates/scripts/test_qc_pkg.R - shell: Rscript {0} + - name: Test and QC 🧪 + run: Rscript templates/scripts/test_qc_pkg.R - name: Archive validation results ⬆️ uses: actions/upload-artifact@v4