Skip to content

Merge pull request #1 from placetopay-org/feature/update-mixpanel #13

Merge pull request #1 from placetopay-org/feature/update-mixpanel

Merge pull request #1 from placetopay-org/feature/update-mixpanel #13

Workflow file for this run

name: Laravel Package
on: [push, pull_request]
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: PHP Setup
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: xdebug
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: PHP CS Fixer
run: vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --stop-on-violation --using-cache=no
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit