Skip to content

Commit 48462cb

Browse files
authored
Merge pull request #223 from phpbb/issue/222
Backport github actions to 3.2.x branch
2 parents 6bd992e + 43224fd commit 48462cb

File tree

2 files changed

+32
-18
lines changed

2 files changed

+32
-18
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

.travis.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)