-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (44 loc) · 1.69 KB
/
Copy pathci.yml
File metadata and controls
46 lines (44 loc) · 1.69 KB
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
name: CI
on:
push:
schedule:
- cron: "0 0 * * *"
jobs:
php83:
name: PHP 8.3
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- name: composer test
uses: docker://ghcr.io/chubbyphp/ci-php83@sha256:7889f27ec1f019b108b0ee5c83c7a0376d396543b72dffd064c6a1748e488d76 # latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
php84:
name: PHP 8.4
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- name: composer test
uses: docker://ghcr.io/chubbyphp/ci-php84@sha256:557e528e812755674d6c806120ade29649e8eeabae892de0b4ccdc9c35ffe32c # latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
php85:
name: PHP 8.5
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- name: composer test
uses: docker://ghcr.io/chubbyphp/ci-php85@sha256:34959ffd65719f755680fe0cbed99ebf304dbe466d663aa1807425908bcd6b44 # latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
- name: sonarcloud.io
uses: SonarSource/sonarqube-scan-action@299e4b793aaa83bf2aba7c9c14bedbb485688ec4 # v7.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}