java is installed in docker, obsolete to install it additionally #16
Workflow file for this run
This file contains 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: CI Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
shard: [1, 2, 3, 4, 5] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Nextflow | |
uses: nf-core/setup-nextflow@v1 | |
with: | |
version: "latest-edge" | |
- name: Install nf-test | |
run: | | |
wget -qO- get.nf-test.com | bash -s 0.9.0-rc2 | |
sudo mv nf-test /usr/local/bin/ | |
- name: Run Tests (Shard ${{ matrix.shard }}/${{ strategy.job-total }}) | |
run: nf-test test --ci --shard ${{ matrix.shard }}/${{ strategy.job-total }} |