update pangolin to 4.4 and remove defaults channel #31
This file contains hidden or 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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| name: Pull Request | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: create artifacts dir to save test logs | |
| run: mkdir artifacts | |
| - name: Install Miniconda | |
| run: bash .github/scripts/install_conda.sh | |
| - name: Install Nextflow | |
| run: bash .github/scripts/install_nextflow.sh | |
| - name: Test against expected results | |
| run: bash .github/scripts/test_output_matches_expected_results.sh | |
| - name: if failure, add latest NF log to artifacts | |
| run: mv .nextflow.log artifacts/failure.nextflow.log && mv work artifacts/work_failed | |
| if: failure() | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: test_artifacts | |
| path: artifacts |