Update .github/workflows/ecr_sync.yml #158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: CI test | |
# # This workflow is triggered on PRs of type review_requested or ready_for_review, against dev or main | |
# on: | |
# pull_request: | |
# types: [review_requested, ready_for_review] | |
# branches: | |
# - main | |
# - dev | |
# workflow_dispatch: | |
# jobs: | |
# docker: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# nxf_ver: ['20.01.0', ''] | |
# steps: | |
# - uses: actions/checkout@v3.0.1 | |
# - name: Install Nextflow | |
# run: | | |
# export NXF_VER=${{ matrix.nxf_ver }} | |
# wget -qO- get.nextflow.io | bash | |
# sudo mv nextflow /usr/local/bin/ | |
# - name: Basic workflow tests | |
# run: | | |
# nextflow run ${GITHUB_WORKSPACE} -profile single_vcf_test |