mirror of
https://github.com/Respect/Validation.git
synced 2026-03-22 17:54:41 +01:00
Since we have so many lint-related commands now, it makes sense to group them together to it's easier to spot them.
33 lines
599 B
YAML
33 lines
599 B
YAML
name: Continuous Integration (docs)
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'data/**'
|
|
- 'tests/**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'data/**'
|
|
- 'tests/**'
|
|
|
|
jobs:
|
|
docs:
|
|
name: Documentation
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.5
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: composer install --prefer-dist
|
|
|
|
- name: Lint documentation files
|
|
run: bin/console lint:docs
|