Update to 1.3.4 (1.3) #395
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: CI | |
on: | |
pull_request: | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.9 | |
- name: Update repositories | |
run: | | |
sudo apt update | |
- name: Install Apptainer dependencies | |
run: | | |
sudo apt-get install -f -y build-essential libssl-dev uuid-dev squashfs-tools libseccomp-dev cryptsetup-bin libgpgme-dev | |
- name: Install LaTeX dependencies | |
run: | | |
sudo apt-get install -f -y texlive-latex-extra latexmk | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
- name: Install Sphinx | |
run: | | |
pip install --user --upgrade --upgrade-strategy eager setuptools sphinx sphinx-rtd-theme restructuredtext_lint rstcheck pygments m2r2 | |
- name: Lint rst | |
run: | | |
set -x | |
python3 copyreplace.py *.rst | |
rstcheck --ignore-languages c,c++ --report-level warning *.rep | |
rm -f *.rep | |
- name: Build web documentation | |
run: | | |
make html | |
- name: Build PDF documentation | |
run: | | |
make latexpdf | |
- name: Build EPUB documentation | |
run: | | |
make epub |