Merge pull request #69 from timatbw/fix-skip-child-docs #15
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: Tests | |
on: | |
push: | |
branches: | |
- 'bw_branch_*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Ivy bootstrap | |
run: ant ivy-bootstrap | |
- name: Run tests | |
run: ant -noinput -buildfile build.xml -Dtests.badapples=false -Dtests.slow=false test |