Update demo workflow to trigger on dev-actions branch and add Python environment setup
This commit is contained in:
parent
53ea051b2f
commit
4b629f14b2
1 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,11 @@
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "dev-actions"
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- run: echo All Good
|
- run: /usr/bin/python -m venv .env
|
||||||
|
- run: ./.env/bin/pip install myst
|
||||||
|
- run: ./.env/bin/python -m myst build --html
|
Loading…
Add table
Add a link
Reference in a new issue