Skip to content

fix: Do not use EventDispatcherInterface but OCP IEventDispatcher #4

fix: Do not use EventDispatcherInterface but OCP IEventDispatcher

fix: Do not use EventDispatcherInterface but OCP IEventDispatcher #4

Workflow file for this run

# 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
name: Lint
on:
pull_request:
push:
branches:
- master
- stable*
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
coverage: none

Check failure on line 28 in .github/workflows/lint-php-cs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint-php-cs.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
- name: Install dependencies
run: composer i
- name: Lint
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )