-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 942 Bytes
/
checks.yml
File metadata and controls
44 lines (34 loc) · 942 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
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Check Build
on: [pull_request]
jobs:
build:
strategy:
matrix:
php: ["8.1", "8.2", "8.3", "8.4"]
composer_flags:
- '--prefer-lowest'
- ''
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Prepare environment
run: |
echo "COMPOSER_CACHE=$(composer config cache-dir)" >> $GITHUB_ENV
- name: Composer Cache
uses: actions/cache@v3
with:
path: |
${{ env.COMPOSER_CACHE }}
vendor
key: ${{ runner.os }}-composer
- name: Install dependencies
run: |
composer update --no-progress --no-interaction ${{ matrix.composer_flags }} > /dev/null
- name: Tests
run: |
vendor/bin/phpunit