Skip to content

docs: add github repository link to mkdocs navigation bar #7

docs: add github repository link to mkdocs navigation bar

docs: add github repository link to mkdocs navigation bar #7

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2', '8.3', '8.4']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- run: composer install --no-interaction --prefer-dist
- run: composer test
- run: composer analyse
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -r requirements-docs.txt
- run: mkdocs build --strict