updated the download_illustrations.py to allow select icons and EHLDs… #6
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] | |
| 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 |