Use annotation file object as input for tasks - fix #84 #73
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: Pipeline CI | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
profile: | |
- gemflux | |
- starrsem | |
- starflux | |
- markdup | |
- rmdup | |
- ihec | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 16 | |
java-package: jre | |
- name: Run pipeline | |
run: . .circ && ci test | |
env: | |
CI_PROFILE: ${{ matrix.profile }} |