2020-03-06 15:35:02 +00:00
|
|
|
name: tcoffee
|
2020-03-05 16:17:14 +00:00
|
|
|
on:
|
2020-07-16 15:11:34 +00:00
|
|
|
push:
|
2020-07-16 15:14:57 +00:00
|
|
|
paths:
|
|
|
|
- software/tcoffee/**
|
|
|
|
- .github/workflows/tcoffee.yml
|
|
|
|
- tests
|
2020-03-05 16:17:14 +00:00
|
|
|
pull_request:
|
2020-07-16 15:14:57 +00:00
|
|
|
paths:
|
|
|
|
- software/tcoffee/**
|
|
|
|
- .github/workflows/tcoffee.yml
|
|
|
|
- tests
|
2020-03-05 16:17:14 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run_ci_test:
|
|
|
|
runs-on: ubuntu-latest
|
2020-07-11 15:14:14 +00:00
|
|
|
env:
|
|
|
|
NXF_ANSI_LOG: false
|
2020-03-05 16:17:14 +00:00
|
|
|
steps:
|
|
|
|
|
2020-03-05 16:48:10 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-03-05 16:17:14 +00:00
|
|
|
|
|
|
|
- name: Install Nextflow
|
|
|
|
run: |
|
|
|
|
wget -qO- get.nextflow.io | bash
|
|
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
|
|
|
|
# Test the module
|
2020-03-06 11:47:55 +00:00
|
|
|
- run: |
|
2020-07-11 12:36:12 +00:00
|
|
|
cd software/tcoffee/test/
|
2020-07-11 15:14:14 +00:00
|
|
|
nextflow run .
|