new method that checks if a directory exists, required for integratio… #19
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: specific unit-tests | |
on: [push] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 13 | |
distribution: adopt | |
- name: Checkout runtime | |
uses: actions/checkout@v2 | |
with: | |
repository: rovnanik-sk/moqui-runtime | |
path: './runtime' | |
ref: rsk-dev | |
- name: Prep - clean database | |
run: ./gradlew cleanDb | |
- name: Prep - load database | |
run: ./gradlew load | |
- name: Run tests (MoquiSuite) | |
run: ./gradlew test --tests MoquiSuite | |
- name: Run tests (BulkEntityTester) | |
run: ./gradlew test --tests ars.rockycube.BulkEntityTester | |
- name: Run tests (ComplexEntitiesTester) | |
run: ./gradlew test --tests ars.rockycube.ComplexEntitiesTester | |
- name: Run tests (DynamicRelationshipTester) | |
run: ./gradlew test --tests ars.rockycube.DynamicRelationshipTester | |
- name: Run tests (PersonEntityTester) | |
run: ./gradlew test --tests ars.rockycube.PersonEntityTester | |
- name: Run tests (SmartFindTester) | |
run: ./gradlew test --tests ars.rockycube.SmartFindTester |