Skip to content

docs: Add information for inactive status #11

docs: Add information for inactive status

docs: Add information for inactive status #11

Workflow file for this run

name: CI and documentation
on:
push:
branches-ignore:
- main
workflow_dispatch:
jobs:
checks:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python versions
uses: actions/setup-python@v4
with:
python-version: |
3.10
3.11
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
cache: true
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: pdm install --no-default -dG maintenance -dG checks
- name: Check code quality
run: pdm checks quality
- name: Check type annotations
run: pdm checks types
- name: Check vulnerabilities in dependencies
run: pdm checks dependencies
tests:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python versions
uses: actions/setup-python@v4
with:
python-version: |
3.10
3.11
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
cache: true
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: pdm install -dG maintenance -dG tests
- name: Run the test suite
run: pdm tests
doc:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
cache: true
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: pdm install -dG maintenance -dG docs
- name: Build documentation with Python ${{ matrix.python-version }}
run: pdm docs build