-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (43 loc) · 1.22 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Test PHP ${{ matrix.php }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: ['7.3', '7.4', '8.0', '8.1', '8.2']
os: ['ubuntu-latest']
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: composer diagnose || true
- run: composer install
- run: composer audit
- run: composer run lint
- run: composer run test
- name: Test & publish code coverage
if: ${{ matrix.php == '8.2' && matrix.os == 'ubuntu-latest' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_REPORTER_ID }}
with:
coverageLocations: ${{ github.workspace }}/build/logs/clover.xml:clover