Skip to content

chore: bump actions/upload-artifact from 5.0.0 to 6.0.0 #1249

chore: bump actions/upload-artifact from 5.0.0 to 6.0.0

chore: bump actions/upload-artifact from 5.0.0 to 6.0.0 #1249

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@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
- 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@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
- name: Install the dependencies
run: uv sync --locked --group download --group dev --python 3.14
- name: Run tests
run: uv run pytest dependencies/tests