Skip to content

Fixes/publish failed qc stats (#29) #389

Fixes/publish failed qc stats (#29)

Fixes/publish failed qc stats (#29) #389

Workflow file for this run

name: CI Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2, 3]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- 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
sudo mv nf-test /usr/local/bin/
- name: Build Docker
run: docker build -t genepi/imputationserver2 .
- name: Run Tests (Shard ${{ matrix.shard }}/${{ strategy.job-total }})
run: nf-test test --ci --shard ${{ matrix.shard }}/${{ strategy.job-total }}