Check for obsolete snapshots only when all tests are green #209
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: Run Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Install Nextflow v22.10.4 | |
run: | | |
export NXF_VER=22.10.4;curl -s https://get.nextflow.io | bash | |
sudo mv nextflow /usr/local/bin/ | |
- name: Test | |
run: mvn install |