2022-10-15 17:57:35 +08:00
|
|
|
# This workflow is provided via the organization template repository
|
|
|
|
#
|
|
|
|
# https://github.com/nextcloud/.github
|
|
|
|
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
|
|
|
|
2023-05-27 15:44:13 +08:00
|
|
|
name: Lint php
|
2022-10-15 17:57:35 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-06-04 02:24:27 +08:00
|
|
|
paths:
|
|
|
|
- 'php/**'
|
2022-10-15 17:57:35 +08:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-06-04 02:24:27 +08:00
|
|
|
paths:
|
|
|
|
- 'php/**'
|
2022-10-15 17:57:35 +08:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-05-27 15:44:13 +08:00
|
|
|
concurrency:
|
2022-10-15 17:57:35 +08:00
|
|
|
group: lint-php-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
php-lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-06-01 22:16:15 +08:00
|
|
|
php-versions: [ "8.2" ]
|
2022-10-15 17:57:35 +08:00
|
|
|
|
|
|
|
name: php-lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-05-27 15:44:13 +08:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2022-10-15 17:57:35 +08:00
|
|
|
|
|
|
|
- name: Set up php ${{ matrix.php-versions }}
|
2023-06-01 22:07:18 +08:00
|
|
|
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d # v2
|
2022-10-15 17:57:35 +08:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
coverage: none
|
2023-05-27 15:44:13 +08:00
|
|
|
ini-file: development
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-10-15 17:57:35 +08:00
|
|
|
|
|
|
|
- name: Lint
|
2023-06-01 22:16:15 +08:00
|
|
|
run: cd php && composer run lint
|
2022-10-15 17:57:35 +08:00
|
|
|
|
2023-06-06 16:28:19 +08:00
|
|
|
php-lint-summary:
|
2022-10-15 17:57:35 +08:00
|
|
|
permissions:
|
|
|
|
contents: none
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: php-lint
|
|
|
|
|
|
|
|
if: always()
|
|
|
|
|
|
|
|
name: php-lint-summary
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Summary status
|
|
|
|
run: if ${{ needs.php-lint.result != 'success' && needs.php-lint.result != 'skipped' }}; then exit 1; fi
|