Skip to content

Feature/191 get enrollments endpoint #148

Feature/191 get enrollments endpoint

Feature/191 get enrollments endpoint #148

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Pull Request Build
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Add repo credentials
uses: s4u/[email protected]
with:
servers: |
[{
"id": "mule-enterprise",
"username": "${{ secrets.mule_nexus_username }}",
"password": "${{ secrets.mule_nexus_password }}"
},
{
"id": "scores-exchange",
"username": "${{ secrets.anypoint_cicd_username }}",
"password": "${{ secrets.anypoint_cicd_password }}"
}]
- name: Print effective-settings
run: mvn help:effective-settings
- name: Build with Maven
run: mvn -B package --file pom.xml