Merge branch 'shaloo-276-sphinx8' #47
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
# This is a basic workflow to help you get started with Actions | |
name: linuxosbuild | |
on: [push] | |
jobs: | |
ubuntu_build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: linux build dependencies | |
run: | | |
sudo apt-get update -y && sudo apt-get install -y build-essential make libenchant-dev enchant git dialog apt-utils && sudo apt-get autoremove && sudo apt-get clean | |
python3 -m pip install --upgrade pip | |
python3 -m pip install setuptools wheel | |
python3 -m pip install -r docs/requirements.txt | |
- name: Sphinx Build | |
run: | | |
make -C docs html spelling |