From d824025d45a8ed4a7f5c85ccba97bb2cf9cc461a Mon Sep 17 00:00:00 2001 From: JoseEspinosa Date: Tue, 2 Apr 2024 14:22:29 +0200 Subject: [PATCH] Add the esmfold test to ci --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13e9d324..17260c5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,3 +89,19 @@ jobs: - name: Run pipeline with stub-run in colabfold_webserver mode run: | nextflow run ${GITHUB_WORKSPACE} -profile test_colabfold_webserver,docker --outdir ./results + + test_esmfold: + name: Test ESMFold workflow + if: ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/proteinfold') }} + runs-on: ubuntu-latest + steps: + - name: Check out pipeline code + uses: actions/checkout@v2 + + - name: Install Nextflow + run: | + wget -qO- get.nextflow.io | bash + sudo mv nextflow /usr/local/bin/ + - name: Run pipeline with stub-run in esmfold mode + run: | + nextflow run ${GITHUB_WORKSPACE} -profile test_esmfold,docker --outdir ./results