-
Notifications
You must be signed in to change notification settings - Fork 106
59 lines (48 loc) · 1.51 KB
/
phptest.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
54
55
56
57
58
59
on: [push]
name: "CI PHP"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4, 8.0, 8.1, 8.2]
laravel: [8.*]
include:
- php: 8.0
laravel: 9.*
- php: 8.1
laravel: 9.*
- php: 8.2
laravel: 9.*
- php: 8.1
laravel: 10.*
- php: 8.2
laravel: 10.*
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
coverage: pcov
extensions: intl, gd, zip, pdo, sqlite, pdo_sqlite, dom, curl, libxml, mbstring, fileinfo, exif, iconv
ini-values: memory_limit=-1,disable_functions="",pcov.exclude="~(vendor|tests|node_modules)~",pcov.directory="./"
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Composer Install
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer install
- name: PHPUNIT Tests
run: |
./vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Upload to codecov
uses: codecov/codecov-action@v3
with:
name: PHP ${{ matrix.php }}
files: coverage.xml