Skip to content

Add update check mechanism #720

Add update check mechanism

Add update check mechanism #720

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@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@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
- name: Run security checks
run: make security
- name: Run build
run: make build