Make scratch true the default for setonix #80
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: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nextflow | |
run: | | |
curl -s https://get.nextflow.io | bash | |
sudo mv nextflow /usr/local/bin/ | |
- name: Run movp test | |
run: | | |
nextflow run marine-omics/movp -profile docker,test -r main | |
- name: Show Log | |
if: always() | |
run: | | |
cat .nextflow.log |