2021-03-15 02:51:13 +01:00
|
|
|
name: "documentation check"
|
2021-03-07 19:43:07 +01:00
|
|
|
|
|
|
|
on: ["pull_request", "push"]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
doc-check:
|
2021-03-15 02:51:13 +01:00
|
|
|
name: "documentation check"
|
2021-03-07 19:43:07 +01:00
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
steps:
|
|
|
|
- name: "checkout"
|
|
|
|
uses: "actions/checkout@v2"
|
|
|
|
|
|
|
|
- name: "installing PHP"
|
|
|
|
uses: "shivammathur/setup-php@v2"
|
|
|
|
with:
|
|
|
|
php-version: "7.4"
|
|
|
|
ini-values: memory_limit=-1
|
|
|
|
tools: composer:v2, cs2pr
|
|
|
|
extensions: bcmath, mbstring, intl, sodium, json
|
|
|
|
|
2021-03-15 02:51:13 +01:00
|
|
|
- name: "checking if documentation is up-to-date."
|
|
|
|
run: "php docs/documenter.php check"
|