-
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (31 loc) · 1.02 KB
/
tests_php.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
name: Tests PHP
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0']
dependency-version: [prefer-stable]
name: P${{ matrix.php }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2.3.4
- name: Setup PHP
uses: shivammathur/setup-php@2.11.0
with:
php-version: ${{ matrix.php }}
- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v3.3.1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Install dependencies
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
working-directory: src/php
- name: Run tests
run: composer test
working-directory: src/php