Skip to content

Bump aglipanci/laravel-pint-action from 2.0.0 to 2.3.0 #16

Bump aglipanci/laravel-pint-action from 2.0.0 to 2.3.0

Bump aglipanci/laravel-pint-action from 2.0.0 to 2.3.0 #16

Workflow file for this run

name: "Run Tests"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP environment
uses: shivammathur/setup-php@v2
- name: Install dependencies
run: composer install
phpunit:
strategy:
matrix:
php_version: [8.1, 8.2]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP environment
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
coverage: xdebug
- name: Install dependencies
run: composer install
- name: PHPUnit check
run: vendor/bin/phpunit tests/ --coverage-clover ./coverage.xml
#
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODE_COV_TOKEN }}
files: ./coverage.xml
verbose: true