-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (53 loc) · 1.34 KB
/
ci.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
47
48
49
50
51
52
53
54
55
56
57
name: CI
on: push
jobs:
test-8-1:
name: "Tests on PHP 8.1"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
cp .github/workflows/.env .env
make install-8.1
- name: Run PHP tests
run: make php-8.1-tests-ci
- name: Upload to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODE_COV_TOKEN }}
files: ./coverage.xml
verbose: true
test-8-2:
name: "Tests on PHP 8.2"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
cp .github/workflows/.env .env
make install-8.2
- name: Run PHP tests
run: make php-8.2-tests-ci
mutation-testing:
name: "Mutation tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
cp .github/workflows/.env .env
make install-8.1
- name: Run mutation testing
run: make php-mutation-testing-ci
code-validation:
name: "Code validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
cp .github/workflows/.env .env
make install
- name: Run code validation
run: make php-code-validation