Skip to content

Commit 43224fd

Browse files
authored
Port tests.yml workflow file from 3.3.x
1 parent 0adf070 commit 43224fd

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
10+
- master
11+
- '[34].[0-9]+.x'
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+
run: |
31+
cd development
32+
make html

0 commit comments

Comments
 (0)