mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-17 08:50:50 +00:00
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: "Documentation"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- '2.x'
|
|
- '3.x'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: "Build"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: "Checkout code"
|
|
uses: actions/checkout@v2
|
|
|
|
- name: "Set-up PHP"
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.1
|
|
coverage: none
|
|
tools: "composer:v2"
|
|
|
|
- name: Get composer cache directory
|
|
id: composercache
|
|
working-directory: doc/_build
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composercache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
|
|
- name: "Install dependencies"
|
|
working-directory: doc/_build
|
|
run: composer install --prefer-dist --no-progress
|
|
|
|
- name: "Build the docs"
|
|
working-directory: doc/_build
|
|
run: php build.php --disable-cache
|
|
|
|
doctor-rst:
|
|
name: "DOCtor-RST"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: "Checkout code"
|
|
uses: actions/checkout@v2
|
|
|
|
- name: "Run DOCtor-RST"
|
|
uses: docker://oskarstark/doctor-rst
|
|
with:
|
|
args: --short
|
|
env:
|
|
DOCS_DIR: 'doc/'
|