* fix schema with enum fields - issue #699 * fix drivers dependencies - make them optional * fix command * provide extras * add bolean field to related model * add test with select related and boolean * new test case based on issue * fix bool issue in postgres limit queries - issue #704 * fix coverage * bump version and add release info
25 lines
614 B
YAML
25 lines
614 B
YAML
name: Build Documentation using MkDocs
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
jobs:
|
|
build:
|
|
name: Build and Deploy Documentation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Master
|
|
uses: actions/checkout@v3
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install poetry==1.1.11
|
|
poetry install --extras "all"
|
|
env:
|
|
POETRY_VIRTUALENVS_CREATE: false
|
|
- name: Deploy
|
|
run: |
|
|
mkdocs gh-deploy --force
|