Skip to content

Commit

Permalink
Merge pull request apptainer#124 from edytuk/pr-ci
Browse files Browse the repository at this point in the history
Add CI on PR
  • Loading branch information
DrDaveD authored Dec 17, 2021
2 parents 7175e6c + 18d337f commit f45fc08
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: CI

on:
pull_request:

jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- 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 sphinx sphinx-rtd-theme restructuredtext_lint pygments
- name: Build web documentation
run: |
make html
- name: Build PDF documentation
run: |
make latexpdf
- name: Build EPUB documentation
run: |
make epub

0 comments on commit f45fc08

Please sign in to comment.