-
-
Notifications
You must be signed in to change notification settings - Fork 27
29 lines (27 loc) · 813 Bytes
/
test.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
name: test-suite
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest Docker Compose
run: |
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m)" -o docker-compose
chmod +x docker-compose
mv docker-compose /usr/local/bin/docker-compose
- name: Test PHP 8.4
run: make test PHP=8.4
- name: Test PHP 8.3
run: make test PHP=8.3
- name: Test PHP 8.2
run: make test PHP=8.2
- name: Test PHP 8.1
run: make test PHP=8.1
- uses: codecov/codecov-action@v3
with:
directory: build