-
-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (27 loc) · 840 Bytes
/
Copy pathtests.yml
File metadata and controls
34 lines (27 loc) · 840 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
# Generated by Leaf Alchemy from alchemy.yml — edits will be overwritten on the next alchemy run.
# Remove this header to take ownership of this file.
name: Run Tests
on: ["push","pull_request"]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"]
php: ["8.4","8.3","8.2"]
name: PHP ${{ matrix.php }} - ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, zip
tools: composer:v2
coverage: none
- name: Install PHP dependencies
run: composer update --no-interaction --no-progress
- name: Run Tests
run: composer run test