forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 1.1 KB
/
Copy pathphp.yml
File metadata and controls
47 lines (37 loc) · 1.1 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
name: Geocoder
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1']
deps: ['low', 'high']
include:
- php-version: '7.3'
name: PHP ${{ matrix.php-version }} (${{ matrix.deps }})
steps:
- uses: actions/checkout@v2
- name: Use PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: curl
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
if: ${{ matrix.deps == null }}
run: composer update --no-progress --prefer-dist
- name: Install dependencies (low)
if: ${{ matrix.deps == 'low' }}
run: composer update --no-progress --prefer-lowest --prefer-stable
- name: Install dependencies (high)
if: ${{ matrix.deps == 'high' }}
run: composer update --no-progress
- name: Run test suite
run: composer run-script test