Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
jobs:
docs:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10.x"
- name: Upgrade pip
run: |
pip install -U pip poetry
- name: Install package and doc dependencies
run: |
poetry install
- name: Generate docs
run: |
poetry run docs
- name: Deploy docs
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/fhir_utils