updated the read me again to add another location for the xml generat… #19
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: Validate illustrations | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate icons and EHLDs | |
| run: | | |
| docker run --rm \ | |
| -v ${{ github.workspace }}/icons:/data/icons \ | |
| -v ${{ github.workspace }}/ehld:/data/ehld \ | |
| public.ecr.aws/reactome/illustration-validator:latest \ | |
| java -jar ./target/illustration-validator-jar-with-dependencies.jar \ | |
| -e false \ | |
| -d /data/icons \ | |
| -s /data/ehld |