2020-03-06 15:35:02 +00:00
|
|
|
name: tcoffee
|
2020-03-05 16:17:14 +00:00
|
|
|
on:
|
|
|
|
push: {}
|
|
|
|
pull_request:
|
2020-03-05 16:18:35 +00:00
|
|
|
paths: tools/tcoffee/*
|
2020-03-05 16:17:14 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run_ci_test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
# Check out the repository
|
2020-03-05 16:48:10 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Checkout submodules
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
|
|
|
git submodule sync --recursive
|
|
|
|
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
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: |
|
|
|
|
cd tools/tcoffee/test/
|
|
|
|
nextflow run . -ansi-log false
|