-
Notifications
You must be signed in to change notification settings - Fork 24
36 lines (36 loc) · 1.08 KB
/
test-integration.yml
File metadata and controls
36 lines (36 loc) · 1.08 KB
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
name: test-integration
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-versions: [ '8.2']
experimental: [false]
include:
- php-versions: '8.1'
experimental: true
- php-versions: '8.3'
experimental: true
- php-versions: '8.4'
experimental: true
timeout-minutes: 30
name: PHP ${{ matrix.php-versions }} on Ubuntu latest. Experimental == ${{ matrix.experimental }}
steps:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Checkout
uses: actions/checkout@master
- name: Install dependencies
run: composer install
continue-on-error: ${{ matrix.experimental }}
- id: checks
name: Run CI tests
run: composer check
continue-on-error: ${{ matrix.experimental }}
- name: Output log files on failure
if: failure()
run: tail -2000 /var/log/syslog