-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (37 loc) · 976 Bytes
/
tests.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
on:
pull_request:
push:
branches:
- "main"
name: Tests
jobs:
phpunit:
name: PHPUnit on ${{ matrix.operating-system }} with PHP ${{ matrix.php-version }}
strategy:
matrix:
operating-system:
- "ubuntu-latest"
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
services:
azurite:
image: mcr.microsoft.com/azure-storage/azurite
ports:
- 10000:10000
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: curl json
coverage: none
- name: Download dependencies
run: composer install --no-interaction --no-progress --optimize-autoloader
- name: Run tests
run: ./vendor/bin/phpunit