.github/workflows/pages.yml: add Python for parsing

Attempt to add Python and Poetry so we can run the schema parsing
scripts to generate the site content and the RDF.
This commit is contained in:
Alan Orth 2021-12-14 14:02:16 +02:00
parent 3c85358f77
commit 22b78ea149
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 14 additions and 0 deletions

View File

@ -6,6 +6,20 @@ on:
- main
jobs:
parse:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.4
poetry-version: 1.1
- name: Poetry version
run: poetry --version
pages:
runs-on: ubuntu-latest
steps: