Create dependabot action #503
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: Docker Testing | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: build and test the Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
run: sudo apt-get install libsaxonhe-java && npm install -g prettydiff@99 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build and run Docker image | |
run: ant docker_run | |
- name: Run tests | |
run: ant -lib /usr/share/java -Dprettydiff.cmd=`which prettydiff` test |