We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6bd992e + 43224fd commit 48462cbCopy full SHA for 48462cb
.github/workflows/tests.yml
@@ -0,0 +1,32 @@
1
+name: Test make documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - '[34].[0-9]+.x'
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v2
20
+ with:
21
+ python-version: '3.x'
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install sphinx
26
+ pip install sphinx_rtd_theme
27
+ pip install sphinxcontrib-phpdomain
28
+ pip install git+https://github.com/marc1706/sphinx-php.git
29
+ - name: Test make html
30
31
+ cd development
32
+ make html
.travis.yml
0 commit comments