Merge pull request #116 from Aratz/dev #248
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nf-test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Nextflow latest-edge | |
uses: nf-core/setup-nextflow@v2 | |
with: | |
version: "latest-edge" | |
- name: Install nf-test | |
run: | | |
wget -qO- https://get.nf-test.com | bash | |
sudo mv nf-test /usr/local/bin/ | |
- name: Run Tests | |
run: nf-test test --ci tests |