Enhance demo workflow by adding step names for clarity and reorganizing commands

This commit is contained in:
Edgar P. Burkhart 2025-02-09 18:58:40 +01:00
parent 2256cc1647
commit 78a65545c1
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -6,6 +6,11 @@ jobs:
test:
runs-on: self-hosted
steps:
- run: /usr/bin/python -m venv .env
- run: ./.env/bin/pip install mystmd
- run: ./.env/bin/myst build --html
- name: List contents
run: ls
- name: Initialize virtual environment
run: /usr/bin/python -m venv .env
- name: Install dependencies
run: ./.env/bin/pip install mystmd
- name: Build static HTML
run: ./.env/bin/myst build --html