mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 01:36:13 +01:00
26 lines
329 B
YAML
26 lines
329 B
YAML
|
on:
|
||
|
- pull_request
|
||
|
- push
|
||
|
|
||
|
name: CI
|
||
|
|
||
|
jobs:
|
||
|
php-lint:
|
||
|
name: PHP linter
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
php-version:
|
||
|
- 7.2
|
||
|
- 7.3
|
||
|
- 7.4
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v1
|
||
|
|
||
|
- name: Run PHP lint
|
||
|
run: composer ci:php:lint
|