-
-
Notifications
You must be signed in to change notification settings - Fork 58
71 lines (61 loc) · 1.53 KB
/
test-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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: test-php
on:
push:
branches:
- main
- renovate/**
paths:
- php/**
- testdata/**
- .github/**
pull_request:
branches:
- main
paths:
- php/**
- testdata/**
- .github/**
workflow_call:
permissions:
contents: read
jobs:
test-php:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2']
composer-mode: ['low-deps', 'high-deps']
steps:
- uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Discover composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-dir)"
working-directory: php
- name: Cache composer
uses: actions/cache@v4
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: composer
- name: Install dependencies
working-directory: php
run: |
if [[ "${{ matrix.composer-mode }}" = "low-deps" ]]; then
composer update --prefer-lowest
else
composer update
fi
- name: Run tests
working-directory: php
run: |
vendor/bin/php-cs-fixer --show-progress=none --dry-run --diff fix
vendor/bin/psalm --no-cache
vendor/bin/phpunit
- name: run acceptance tests
run: make acceptance
working-directory: php