Skip to content

build(deps): bump mistune from 3.2.1 to 3.3.0 in /lib/galaxy/dependencies #33249

build(deps): bump mistune from 3.2.1 to 3.3.0 in /lib/galaxy/dependencies

build(deps): bump mistune from 3.2.1 to 3.3.0 in /lib/galaxy/dependencies #33249

Workflow file for this run

name: 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', '3.14']
steps:
- uses: actions/checkout@v7.0.0
with:
path: 'galaxy root'
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: ${{ matrix.python-version }}
- name: Install ffmpeg
run: sudo apt-get update && sudo apt-get -y install ffmpeg
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Run tests
run: tox -e unit-coverage
working-directory: 'galaxy root'
- uses: codecov/codecov-action@v7.0.0
with:
flags: py-unit
working-directory: 'galaxy root'
- uses: actions/upload-artifact@v7
if: failure()
with:
name: Unit test results (${{ matrix.python-version }})
path: 'galaxy root/run_unit_tests.html'