Rewrite resolved container image path via the compute environment #33890
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: Mulled Unit Tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.10'] | |
| steps: | |
| - uses: actions/checkout@v7.0.0 | |
| with: | |
| path: 'galaxy root' | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Apptainer's singularity | |
| uses: './galaxy root/.github/actions/install_apptainer' | |
| - name: Install tox | |
| run: uv tool install tox --with tox-uv | |
| - name: Run tests | |
| run: tox -e mulled | |
| working-directory: 'galaxy root' | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: Mulled unit test results (${{ matrix.python-version }}) | |
| path: 'galaxy root/run_unit_tests.html' |