From 36cad5059347e8d420e034aecf10387fdfba9b79 Mon Sep 17 00:00:00 2001 From: Piotr Faba Date: Fri, 6 Mar 2020 14:38:49 +0000 Subject: [PATCH] test submodules checkout --- .github/workflows/cutadapt.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cutadapt.yml b/.github/workflows/cutadapt.yml index 3058bd23..81c734ad 100644 --- a/.github/workflows/cutadapt.yml +++ b/.github/workflows/cutadapt.yml @@ -10,13 +10,8 @@ jobs: 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 + - uses: actions/checkout@v1 + submodules: true - name: Install Nextflow run: | @@ -24,4 +19,4 @@ jobs: sudo mv nextflow /usr/local/bin/ # Test the module - - run: nextflow run ./tools/cutadapt/sort/test_paired/ -ansi-log false + - run: nextflow run ./tools/cutadapt/sort/test_paired/main.nf -ansi-log false