Skip to content

Commit

Permalink
GitHub Actions config to do test Sphinx builds
Browse files Browse the repository at this point in the history
  • Loading branch information
doismellburning committed Nov 30, 2019
1 parent 1526480 commit e403cb2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sphinx site

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build
run: |
make html dirhtml

0 comments on commit e403cb2

Please sign in to comment.