mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2025-05-08 06:06:03 +02:00
.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:
14
.github/workflows/pages.yml
vendored
14
.github/workflows/pages.yml
vendored
@ -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:
|
||||
|
Reference in New Issue
Block a user