mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 07:36:12 +01:00
25 lines
329 B
YAML
25 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
|