generated from craftzing/laravel-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (46 loc) · 1.66 KB
/
quality-assurance.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
name: Quality assurance
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2, 8.3]
laravel: [^10.0, ^11.0]
include:
- laravel: ^11.0
testbench: ^9.0
- laravel: ^10.0
testbench: ^8.0
name: P${{ matrix.php }} - L${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: xdebug
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction
- name: Run tests
run: vendor/bin/phpunit --coverage-clover=coverage.clover
- name: Publish code coverage
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TEST_REPORTER_ID }}
with:
coverageCommand: vendor/bin/phpunit --coverage-clover=coverage.clover
coverageLocations: ${{github.workspace}}/*.clover:clover
debug: true
- name: Run PHPStan analysis
run: vendor/bin/phpstan analyse --memory-limit=-1
if: ${{ matrix.php == '8.2' }}
- name: Run PHP Coding Standards Fixer
run: vendor/bin/php-cs-fixer fix src --dry-run