-
Notifications
You must be signed in to change notification settings - Fork 103
44 lines (38 loc) · 970 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: rnaseq-nf
# This workflow is triggered on pushes to the repository.
on: [push]
jobs:
build:
name: rnseq-nf ci
# This job runs on Linux
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
java_version: ['11.0.4']
steps:
- name: Environment
run: env | sort
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 1
submodules: true
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
architecture: x64
- name: Tests
run: |
curl -fsSL get.nextflow.io | bash
./nextflow run . -profile docker
env:
NXF_ANSI_LOG: false
- name: Tests Wave
run: |
curl -fsSL get.nextflow.io | bash
./nextflow run . -profile docker,wave
env:
NXF_ANSI_LOG: false