mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 11:49:55 +00:00
parent
8fe7f8bf4b
commit
c479714a5e
1 changed files with 16 additions and 6 deletions
22
.github/workflows/ci.yml
vendored
22
.github/workflows/ci.yml
vendored
|
@ -64,18 +64,28 @@ jobs:
|
||||||
NXF_ANSI_LOG: false
|
NXF_ANSI_LOG: false
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
NXF_VER:
|
# Nextflow versions
|
||||||
- "21.10.3"
|
include:
|
||||||
- "latest-everything"
|
# Test pipeline minimum Nextflow version
|
||||||
|
- NXF_VER: "21.10.3"
|
||||||
|
NXF_EDGE: ""
|
||||||
|
# Test latest edge release of Nextflow
|
||||||
|
- NXF_VER: ""
|
||||||
|
NXF_EDGE: "1"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out pipeline code
|
- name: Check out pipeline code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install Nextflow
|
- name: Install Nextflow
|
||||||
uses: nf-core/setup-nextflow@v1
|
env:
|
||||||
with:
|
NXF_VER: ${{ matrix.NXF_VER }}
|
||||||
version: "${{ matrix.NXF_VER }}"
|
# Uncomment only if the edge release is more recent than the latest stable release
|
||||||
|
# See https://github.com/nextflow-io/nextflow/issues/2467
|
||||||
|
# NXF_EDGE: ${{ matrix.NXF_EDGE }}
|
||||||
|
run: |
|
||||||
|
wget -qO- get.nextflow.io | bash
|
||||||
|
sudo mv nextflow /usr/local/bin/
|
||||||
|
|
||||||
- name: Show current locale
|
- name: Show current locale
|
||||||
run: locale
|
run: locale
|
||||||
|
|
Loading…
Reference in a new issue