Skip to content

addded the function for the first file #26

addded the function for the first file

addded the function for the first file #26

Workflow file for this run

name: CI Tests
on: [push, pull_request, workflow_dispatch]
concurrency:
group: nf-test-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2, 3]
steps:
- uses: actions/checkout@v4
- name: Install JDK 21
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Install Nextflow
uses: nf-core/setup-nextflow@v1
with:
version: latest
- name: Install nf-test
uses: nf-core/setup-nf-test@v1
with:
install-pdiff: true
- name: Build Docker
run: docker build -t statgen/imputationserver2 .
- name: Run Tests (Shard ${{ matrix.shard }}/${{ strategy.job-total }})
run: nf-test test --ci --shard ${{ matrix.shard }}/${{ strategy.job-total }}