Skip to content

Release Screenshot API support in v0.2.0 (#1) #5

Release Screenshot API support in v0.2.0 (#1)

Release Screenshot API support in v0.2.0 (#1) #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- run: python -m pip install -e ".[dev]"
- run: ruff format --check .
- run: ruff check .
- run: mypy --python-version "${{ matrix.python-version }}" src/search1api
- run: pytest
- run: python -m build