Bump aglipanci/laravel-pint-action from 2.4 to 2.5 #26
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: "Run Tests" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
phpcs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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@v4 | |
- 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@v4 | |
with: | |
token: ${{ secrets.CODE_COV_TOKEN }} | |
files: ./coverage.xml | |
verbose: true |