Skip to content

build(deps): bump astral-sh/setup-uv from 8.2.0 to 10.0.1 #1395

build(deps): bump astral-sh/setup-uv from 8.2.0 to 10.0.1

build(deps): bump astral-sh/setup-uv from 8.2.0 to 10.0.1 #1395

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v7
with:
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras
- name: Run code formatting
run: make format
- name: Run linting
run: make lint
- name: Run tests
run: make test-unit
- name: Run security checks
run: make security
- name: Run build
run: make build