Skip to content

build: tests were accidentally included into the final build #45

build: tests were accidentally included into the final build

build: tests were accidentally included into the final build #45

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Cache PIP
uses: actions/cache@v4
with:
path: |
~/.cache/pip
.venv
key: pip-${{ matrix.python-version }}-${{ hashFiles('pdm.lock') }}
- name: Install PDM
run: |
pip install pdm
pdm sync --clean
- run: pdm run mkdocs gh-deploy --force