Skip to content

build(deps): bump setuptools in /lib/galaxy/dependencies #41596

build(deps): bump setuptools in /lib/galaxy/dependencies

build(deps): bump setuptools in /lib/galaxy/dependencies #41596

name: first startup
on:
push:
paths-ignore:
- 'doc/**'
- 'lib/galaxy_test/selenium/**'
- 'packages/**'
pull_request:
paths-ignore:
- 'doc/**'
- 'lib/galaxy_test/selenium/**'
- 'packages/**'
env:
YARN_INSTALL_OPTS: --frozen-lockfile
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
build-client:
uses: ./.github/workflows/build_client.yaml
test:
name: Startup test
needs: build-client
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.14']
defaults:
run:
shell: bash -l {0}
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: Restore client cache
uses: actions/cache@v6.1.0
with:
fail-on-cache-miss: true
key: galaxy-static-${{ needs.build-client.outputs.commit-id }}
path: 'galaxy root/static'
- name: Install tox
run: uv tool install tox --with tox-uv
- name: run tests
run: tox -e first_startup
working-directory: 'galaxy root'