Skip to content

πŸ“” fix: typo in cakephp-coding-conventions.rst #2021

πŸ“” fix: typo in cakephp-coding-conventions.rst

πŸ“” fix: typo in cakephp-coding-conventions.rst #2021

Workflow file for this run

name: CI
on:
push:
branches:
- '2.x'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
doc-type: ['HTML', 'EPUB', 'PDF']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install packages
run: |
sudo apt install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended texlive-lang-all
- name: Build Docs
run: |
if [[ ${{ matrix.doc-type }} == 'HTML' ]]; then make html; fi
if [[ ${{ matrix.doc-type }} == 'EPUB' ]]; then make epub; fi
if [[ ${{ matrix.doc-type }} == 'PDF' ]]; then make latex; fi