Skip to content

chore: bump astral-sh/setup-uv from 7.1.6 to 7.2.0 #1269

chore: bump astral-sh/setup-uv from 7.1.6 to 7.2.0

chore: bump astral-sh/setup-uv from 7.1.6 to 7.2.0 #1269

Workflow file for this run

# This workflow will install Python dependencies, and run the tests for our project
name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
- name: Install the dependencies
run: uv sync --locked --group dev --all-extras --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest tests
test-weekly-download:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
- name: Install the dependencies
run: uv sync --locked --group download --group dev --python 3.14
- name: Run tests
run: uv run pytest dependencies/tests