Skip to content

Repr/selector tests and docs #270

Repr/selector tests and docs

Repr/selector tests and docs #270

Workflow file for this run

name: Static Tests
on:
push:
branches:
- '**'
paths-ignore:
- 'docs/**'
- 'tests/web_tests/**'
- 'README.md'
- 'CHANGELOG.md'
- 'LICENSE'
- '.gitignore'
jobs:
static:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Environment
id: setup
uses: ./.github/actions/setup
with:
python-version: ${{ matrix.python-version }}
- name: Run Static tests with ${{ matrix.python-version }}
run: |
uv run --no-config pytest tests/static_tests