Bump reviewdog/action-misspell from 1.8.1 to 1.14.0 #55
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 pushes and PRs to the repository. | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nxf_ver: ['20.01.0', ''] | |
steps: | |
- uses: actions/[email protected] | |
- 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 test,docker |