-
Notifications
You must be signed in to change notification settings - Fork 18
49 lines (46 loc) · 1.24 KB
/
main.yaml
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
name: Main
on:
workflow_dispatch:
push:
branches:
- main
- master
- release/**
pull_request:
branches:
- main
- master
- release/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest', 'macos-latest'] #, 'windows-latest']
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
steps:
- name: Get source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
ini-values: post_max_size=256M, max_execution_time=180
- run: sudo pear list
- run: sudo pear channel-update pear.php.net
- run: sudo pear upgrade --force pear/pear
- run: sudo pear list
- run: sudo pear install --force package.xml
- run: sudo pear list
- run: sudo pear package
- run: sudo pear package-validate
- run: sudo pear install --force *.tgz
- run: sudo pear list
- run: composer install
- run: ./vendor/bin/phpunit tests