Skip to content

update-lockfile

update-lockfile #10

Workflow file for this run

on:
push:
branches:
- main
jobs:
publish_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install Dependencies
run: |
pip install poetry
poetry config virtualenvs.in-project true
poetry install
- name: Publish Pages
run: poetry run mkdocs gh-deploy