Make build to use a local .m2 #2113
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: API Manager Pull Request builder | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v1 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '10.x' | |
- name: Build product-apim with Test. | |
run: mvn clean install --file pom.xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1.2.1 | |
with: | |
flags: integration_tests |