This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
Update changelog 3.38 #1516
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π Build HTML create artifact for review | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checking out the code π | |
with: | |
fetch-depth: 1 | |
- name: Set up Python 3.10 π | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies π¨βπ©βπ¦ | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r REQUIREMENTS.txt | |
- name: Build sphinx website π | |
run: | | |
make html | |
- name: Upload build artifact π¦ | |
uses: actions/upload-artifact@v3 | |
with: | |
name: HTML build | |
path: output |