Skip to content

Commit

Permalink
Fix artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Feb 8, 2024
1 parent 8ac1042 commit d2f2c17
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ name: Pull Request
jobs:
test:
strategy:
fail-fast: false
matrix:
nextflow_version: ["21.04.3", "23.10.1"]
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: create artifacts dir to save test logs
run: mkdir artifacts
env:
NXF_VER: ${{ matrix.nextflow_version }}
run: mkdir artifacts-nextflow-${NXF_VER}
- name: Install Miniconda
run: bash .github/scripts/install_conda.sh
- name: Install Nextflow
Expand All @@ -32,6 +35,8 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
if: always()
env:
NXF_VER: ${{ matrix.nextflow_version }}
with:
name: test_artifacts
path: artifacts
name: artifacts-nextflow-${{ matrix.nextflow_version }}
path: artifacts-nextflow-${NXF_VER}

0 comments on commit d2f2c17

Please sign in to comment.