mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 06:45:44 +01:00
- Added a composite action for common setup tasks. - Shorter names that fit better GitHub runner displays. - Changed ci-perf to only run if src or tests change. - Removed redundant step names when they're obvious.
22 lines
339 B
YAML
22 lines
339 B
YAML
name: CI - Docs
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'data/**'
|
|
- 'tests/**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'data/**'
|
|
- 'tests/**'
|
|
|
|
jobs:
|
|
docs:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: ./.github/actions/setup-action
|
|
|
|
- run: bin/console lint:docs
|