[#697] Github actions to run all PRC tests #3
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: run-bats-tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| timeout-minutes: 20 | |
| name: Python ${{ matrix.python }}, iRODS ${{ matrix.irods_server }} | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./irods/test/harness | |
| strategy: | |
| matrix: | |
| python: ['3.9','3.13'] | |
| #irods_server: ['4.3.4'] | |
| irods_server: ['5.0.1'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build images | |
| run: ./create_docker_images.sh "${{ matrix.irods_server }}" "${{ matrix.python }}" | |
| - name: run tests | |
| run: | | |
| for script in repo_root/irods/test/scripts/test[0-9]*; do | |
| /repo_root/irods/test/harness/docker_container_driver.sh $script | |
| done |