Skip to content

Bump black from 23.9.1 to 23.10.0 (#187) #183

Bump black from 23.9.1 to 23.10.0 (#187)

Bump black from 23.9.1 to 23.10.0 (#187) #183

Workflow file for this run

name: Publish docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref_name }}-docs
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Cache multiple Pips
uses: actions/cache@v3
with:
path: |
~/.cache/pip
.venv
key: ${{ runner.os }}-3.10-${{ hashFiles('**/poetry.lock') }}
- run: pip install poetry~=1.2
- run: poetry config virtualenvs.in-project true
- run: poetry install --sync
- run: poetry run mkdocs gh-deploy --force