EUCLID: update output filename for downloads in the method get_product for multiple values in file_name or product_id
#4193
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
| # This test job is separated out into its own workflow to be able to obtain a separate badge for it | |
| name: CI-devtest | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| # run every Monday at 5am UTC | |
| - cron: '0 5 * * 1' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - name: dev dependencies with all dependencies with coverage | |
| os: ubuntu-latest | |
| python: '3.13' | |
| toxenv: py313-test-alldeps-devdeps-cov | |
| toxargs: -v | |
| - name: Python 3.14 | |
| os: ubuntu-latest | |
| python: '3.14' | |
| toxenv: py314-test | |
| toxargs: -v | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Install Python dependencies | |
| run: python -m pip install --upgrade tox | |
| - name: Run tests | |
| run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} | |
| - name: Upload coverage to codecov | |
| if: contains(matrix.toxenv,'-cov') | |
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 | |
| with: | |
| file: ./coverage.xml |