Accept optional collection-config file while fetching approved status #215
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: Pull Request CI | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository | |
uses: "actions/checkout@v2" | |
- name: Setup JDK 11 | |
uses: "actions/setup-java@v2" | |
with: | |
java-version: '11' | |
distribution: 'adopt-openj9' | |
- name: Run tests | |
run: mvn -B clean verify | |
- name: Run build | |
run: mvn -B package -DskipTests=true |