Skip to content

build(deps-dev): Bump sphinx-autodoc2 from 0.4.2 to 0.5.0 #213

build(deps-dev): Bump sphinx-autodoc2 from 0.4.2 to 0.5.0

build(deps-dev): Bump sphinx-autodoc2 from 0.4.2 to 0.5.0 #213

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: |
pip install poetry
- name: Install Poetry Project
run: |
poetry install
- name: Run Nox
run: |
poetry run nox -s lint
mypy:
name: "mypy"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install Poetry
run: |
pip install poetry
- name: Install Poetry Project
run: |
poetry install
- name: Run Nox
run: |
poetry run nox -s mypy