Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use install-gh-release GitHub Action #370

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 27 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,20 @@ jobs:
- uses: actions/checkout@v3

- name: Setup Nextflow
uses: nf-core/setup-nextflow@v1

- name: Install nf-test
if: steps.cache-software.outputs.cache-hit != 'true'
run: |
wget -qO- https://code.askimed.com/install/nf-test | bash
sudo mv nf-test /usr/local/bin/
uses: jaxxstorm/[email protected]
with:
repo: nextflow-io/nextflow
tag: v23.10.0
extension-matching: disable
binaries-location: nextflow
cache: enable

- name: Setup nf-test
uses: jaxxstorm/[email protected]
with:
repo: https://github.com/askimed/nf-test
tag: "${{ env.NFTEST_VER }}"
cache: enable

- name: List nf-test
id: list
Expand Down Expand Up @@ -66,25 +73,21 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v4

- name: Cache Nextflow installation
id: cache-software
uses: actions/cache@v3
- name: Setup Nextflow
uses: jaxxstorm/[email protected]
with:
path: |
/usr/local/bin/nf-test
/home/runner/.nf-test/nf-test.jar
key: methylseq-${{ runner.os }}-${{ matrix.NXF_VER }}

- name: Install Nextflow
uses: nf-core/setup-nextflow@v1
repo: nextflow-io/nextflow
tag: v23.10.0
extension-matching: disable
binaries-location: nextflow
cache: enable

- name: Setup nf-test
uses: jaxxstorm/[email protected]
with:
version: "${{ matrix.NXF_VER }}"

- name: Install nf-test
if: steps.cache-software.outputs.cache-hit != 'true'
run: |
wget -qO- https://code.askimed.com/install/nf-test | bash
sudo mv nf-test /usr/local/bin/
repo: https://github.com/askimed/nf-test
tag: "${{ env.NFTEST_VER }}"
cache: enable

- name: Set up Singularity
if: matrix.profile == 'singularity'
Expand Down
Loading