-
-
Notifications
You must be signed in to change notification settings - Fork 6
56 lines (49 loc) · 1.68 KB
/
tests.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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
push:
paths:
- "**.php"
- ".github/workflows/*.yml"
branches:
- master
pull_request:
paths:
- "**.php"
- ".github/workflows/*.yml"
name: "Unit tests"
jobs:
supported-versions-matrix:
name: Supported Versions Matrix
runs-on: ubuntu-latest
outputs:
version: ${{ steps.supported-versions-matrix.outputs.version }}
steps:
- uses: actions/checkout@v4
- id: supported-versions-matrix
uses: WyriHaximus/github-action-composer-php-versions-in-range@v1
tests:
name: "Unit Tests"
runs-on: ${{ matrix.operating-system }}
needs:
- supported-versions-matrix
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
- name: Install dependencies
uses: ramsey/composer-install@v2
- name: Run Grumphp
run: vendor/bin/grumphp run --tasks=phpunit,clover_coverage