-
-
Notifications
You must be signed in to change notification settings - Fork 183
49 lines (42 loc) · 1.49 KB
/
runtime-php-testing.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
name: Runtime testing PHP models
on:
push:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths:
- 'src/generators/php/**'
- 'test/runtime/runtime-php/**'
- 'test/runtime/**php**'
jobs:
runtime-php-test:
name: Runtime testing PHP ${{ matrix.php }} Models
if: "github.event.pull_request.draft == false &&!((github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'ci: update global workflows')) || (github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'chore(release):')) || (github.actor == 'allcontributors' && startsWith(github.event.pull_request.title, 'docs: add')))"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- 8.1
- 8.2
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Build library
run: npm install && npm run build:prod
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php }}
- name: Generate Models
run: npm run generate:runtime:php
- name: Install PHP Dependencies
uses: ramsey/composer-install@v2
with:
working-directory: test/runtime/runtime-php
- name: Run runtime tests
run: composer test
working-directory: test/runtime/runtime-php