Skip to content

Improve documentation #60

Improve documentation

Improve documentation #60

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: "3.8"
- name: Install dependencies
run: pdm sync --dev --group lint
- name: Check format with Black
run: pdm run black --check .
- name: Lint with Ruff
run: pdm run ruff check .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: "3.8"
- name: Install dependencies
run: pdm sync --dev --group mypy
- name: Lint with mypy
run: pdm run mypy
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "pypy3.8"
- "pypy3.9"
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pdm sync --dev --group test
- name: Test with pytest
run: pdm run pytest