Skip to content

build(deps): bump actions/deploy-pages from 5.0.0 to 5.0.1 #1404

build(deps): bump actions/deploy-pages from 5.0.0 to 5.0.1

build(deps): bump actions/deploy-pages from 5.0.0 to 5.0.1 #1404

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@5fda3b95a4ea91299a34e894583c3862153e4b97 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # 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