forked from ar-koder/mosparo-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 1.38 KB
/
tests-upcoming-php.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
# OS: Linux; Symfony: latest stable; PHP: upcoming (still unreleased) version
name: "Tests - Upcoming PHP version"
on:
pull_request:
push:
branches:
- 'main'
env:
fail-fast: true
permissions:
contents: read
jobs:
tests:
runs-on: 'ubuntu-latest'
continue-on-error: true
strategy:
matrix:
php-version: ['8.2']
symfony-version: ['6.2']
steps:
- name: 'Checkout code'
uses: actions/checkout@v4
- name: 'Install PHP with extensions'
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: composer:v2
extensions: mbstring, intl, pdo, pdo_sqlite, sqlite3
ini-values: date.timezone=UTC
- name: 'Install project dependencies'
run: |
composer require --no-progress --no-scripts --no-plugins symfony/flex
composer config extra.symfony.require "${{ matrix.symfony-version }}"
composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-stable --ignore-platform-req=php
vendor/bin/simple-phpunit install
- name: 'Run tests'
run: vendor/bin/simple-phpunit -v || exit 0