diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 49c25a19..000bc499 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,11 +51,14 @@ jobs: - name: Run Gradle Tests run: make test + env: + LOG4J_DEBUG: true - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: nf-quilt-test-reports path: | /home/runner/work/nf-quilt/nf-quilt/plugins/nf-quilt/build/reports/tests/test/ + overwrite: true diff --git a/plugins/nf-quilt/build.gradle b/plugins/nf-quilt/build.gradle index 7d020e7a..dbbe2713 100644 --- a/plugins/nf-quilt/build.gradle +++ b/plugins/nf-quilt/build.gradle @@ -60,7 +60,7 @@ ext { dependencies { // quiltcore - implementation 'com.quiltdata:quiltcore:0.1.1' + implementation 'com.quiltdata:quiltcore:0.1.2' // This dependency is exported to consumers, that is to say found on their compile classpath. compileOnly "io.nextflow:nextflow:$nextflowVersion"