Skip to content

xul.xpath typing.

xul.xpath typing. #5

Workflow file for this run

name: code checks
on:
push:
branches: [ "main", "py3k" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Lint checks (Ruff)
run: |
ruff check --output-format=github
- name: Import sort checks (isort)
run: |
isort --check --diff .
- name: Formatting checks (Black)
run: |
black --check --diff .
- name: Typing checks (mypy)
run: |
mypy .