Merge pull request #13264 from AnuGayan/product-scenarios-4.0.0 #2114
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/[email protected] | |
with: | |
flags: integration_tests |