Skip to content

chore(deps): Update actions/setup-python action to v7 #455

chore(deps): Update actions/setup-python action to v7

chore(deps): Update actions/setup-python action to v7 #455

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- # Required for the package command tests to work
name: Set up Docker Buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
- name: Install uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8
with:
version: "0.11.32"
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7
with:
python-version: "3.14"
- name: Install dependencies
run: uv sync --frozen
- name: Run tests
run: make test