-
-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (34 loc) · 845 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
30
31
32
33
34
35
36
name: test-suite
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test PHP 8.2
run: make test PHP=8.2
- name: Test PHP 8.1
run: make test PHP=8.1
- name: Test PHP 8.0
run: make test PHP=8.0
- name: Test PHP 7.4
run: make test PHP=7.4
- name: Test PHP 7.3
run: make test PHP=7.3
- name: Test PHP 7.2
run: make test PHP=7.2
- name: Test PHP 7.1
run: make test PHP=7.1
- name: Test PHP 5.6
run: make test PHP=5.6
- name: Test PHP 5.5
run: make test PHP=5.5
- name: Test PHP 5.4
run: make test PHP=5.4
- uses: codecov/codecov-action@v3
with:
directory: build