Skip to content

Adapt changelog for release #76

Adapt changelog for release

Adapt changelog for release #76

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Linting
# Controls when the action will run.
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m pip install nox_poetry
- name: Lint
run: nox -s style_checking
- name: Type checking
run: nox -s type_checking
- name: Build docs
run: nox -s build_docs