2023-05-01 10:07:29 +08:00
|
|
|
name: Twig Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-06-04 02:24:27 +08:00
|
|
|
paths:
|
|
|
|
- '**.twig'
|
2023-05-01 10:07:29 +08:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-06-04 02:24:27 +08:00
|
|
|
paths:
|
|
|
|
- '**.twig'
|
2023-05-01 10:07:29 +08:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2024-07-26 00:12:58 +08:00
|
|
|
concurrency:
|
2023-05-01 10:07:29 +08:00
|
|
|
group: lint-twig-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
twig-lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: twig-lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 20:29:01 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-05-01 10:07:29 +08:00
|
|
|
|
|
|
|
- name: Set up php ${{ matrix.php-versions }}
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
2024-03-04 17:46:38 +08:00
|
|
|
php-version: 8.3
|
2023-05-31 19:37:39 +08:00
|
|
|
extensions: apcu
|
2023-05-01 10:07:29 +08:00
|
|
|
coverage: none
|
|
|
|
|
|
|
|
- name: twig lint
|
|
|
|
run: |
|
|
|
|
cd php
|
|
|
|
composer install
|
2024-07-26 00:12:58 +08:00
|
|
|
composer run lint:twig
|