-
-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (51 loc) · 1.9 KB
/
continuous-integration.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
60
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
push:
branches:
- master
pull_request:
name: "Continuous Integration"
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: "Grumphp"
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 Graphviz
uses: kamiazya/setup-graphviz@v1
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ast,mbstring,xdebug,pcov
tools: pecl
- name: Install dependencies
uses: ramsey/composer-install@v2
- name: Run Grumphp
run: vendor/bin/grumphp run
- name: Send Scrutinizer data
run: |
composer require scrutinizer/ocular --dev
vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/coverage/clover.xml
continue-on-error: true