mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
31 lines
770 B
YAML
31 lines
770 B
YAML
name: tcoffee
|
|
on:
|
|
push: {}
|
|
pull_request:
|
|
paths: software/tcoffee/*
|
|
|
|
jobs:
|
|
run_ci_test:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
NXF_ANSI_LOG: false
|
|
steps:
|
|
|
|
# Check out the repository
|
|
- 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
|
|
|
|
- name: Install Nextflow
|
|
run: |
|
|
wget -qO- get.nextflow.io | bash
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
# Test the module
|
|
- run: |
|
|
cd software/tcoffee/test/
|
|
nextflow run .
|