-
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.4 KB
/
Copy pathphp.yml
File metadata and controls
60 lines (51 loc) · 1.4 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: PHP Build
on:
push:
branches: [ main , dev]
pull_request:
branches: [ main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: mbstring, sqlsrv, iconv
tools: phpunit:9.5.20, composer
- name: Install dependencies
run: composer update --prefer-dist --no-progress
- name: Execute Tests
run: phpunit --configuration tests/phpunit.xml
release_staging:
name: Prepare Beta Release Branch
needs:
- "test"
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/dev'
steps:
- uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v3
with:
release-type: php
default-branch: dev
config-file: release-please-config.json
token: ${{ secrets.GITHUB_TOKEN }}
release_prod:
name: Prepare Production Release Branch
needs:
- "test"
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v3
with:
release-type: php
config-file: release-please-config.json
token: ${{ secrets.GITHUB_TOKEN }}