-
Notifications
You must be signed in to change notification settings - Fork 530
50 lines (45 loc) · 1.7 KB
/
Copy pathci.yaml
File metadata and controls
50 lines (45 loc) · 1.7 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: phpunit
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.4, 8.5]
stability: [prefer-lowest, prefer-stable]
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: setup php
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: ${{ matrix.php }}
extensions: mbstring
coverage: xdebug
- name: setup problem matchers
env:
RUNNER_TOOL_CACHE: ${{ runner.tool_cache }}
run: |
echo "::add-matcher::${RUNNER_TOOL_CACHE}/php.json"
echo "::add-matcher::${RUNNER_TOOL_CACHE}/phpunit.json"
- name: determine composer cache directory
id: composer-cache
run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT"
- name: cache dependencies installed with composer
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ steps.composer-cache.outputs.directory }}
key: php-${{ matrix.php-version }}-${{ matrix.stability }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ matrix.php }}-${{ matrix.stability }}-composer
- env:
COMPOSER_STABILITY: ${{ matrix.stability }}
run: composer update "--${COMPOSER_STABILITY}" --prefer-dist --no-interaction
- run: composer run test