Add an ical based list of events on the start page #837
Workflow file for this run
This file contains hidden or 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@v5 | |
| - name: Build and run Docker image | |
| run: ant docker_run | |
| - name: Run tests | |
| run: ant -lib /usr/share/java -Dprettydiff.cmd=`which prettydiff` test |