O3-3323: Fix update of stock item reference that is failing when any update operation is being done #18
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: Run Tests | |
on: | |
pull_request: | |
branches: ['master'] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the code | |
- uses: actions/checkout@v2 | |
# Enable caching of Maven dependencies to speed up job execution. See https://github.com/actions/cache | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
# Set up Java 1.8 with Maven | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
# Execute the Maven verify command to compile, package, test, verify | |
- name: Build with Maven | |
run: mvn clean install |