Fix mix customer ID and Mollie ID, see 5c739d2fcdc448d27e8f9246d71395… #204
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [ push, pull_request ] | |
jobs: | |
phplint: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id | |
uses: pronamic/actions/.github/workflows/phplint.yml@main | |
phpcs: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id | |
uses: pronamic/actions/.github/workflows/phpcs.yml@main | |
phpstan: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id | |
uses: pronamic/actions/.github/workflows/phpstan.yml@main | |
phpunit: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id | |
uses: pronamic/actions/.github/workflows/phpunit.yml@main | |
coverage: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id | |
uses: pronamic/actions/.github/workflows/coverage.yml@main |