-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (25 loc) · 780 Bytes
/
integration.yml
File metadata and controls
31 lines (25 loc) · 780 Bytes
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
name: Integration tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [8.1]
steps:
- uses: actions/checkout@v3
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ matrix.php-version }}
- uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php-version }}
php_extensions: apcu bcmath gd intl pdo_mysql pcntl sodium
args: --ignore-platform-reqs
- uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php-version }}
php_extensions: apcu bcmath gd intl pdo_mysql pcntl sodium
command: tests:integration