Skip to content

Test PHP Generator

Test PHP Generator #68

Workflow file for this run

name: Test PHP Generator
on:
pull_request:
paths:
- 'generator/php/**'
- 'api-specifications/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Set up PHP Composer
uses: php-actions/composer@v6
with:
version: 2
php_version: 8.0
command: about
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install GitPython
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Generate SDKs
run: ./gradlew :generator:php:generateClient
shell: bash
- name: Test SDKs
run: python ./scripts/test_sdk.py --language php
env:
TEST_CLIENT_ID: ${{ secrets.SDK_TEST_CLIENT_ID }}
TEST_CLIENT_SECRET: ${{ secrets.SDK_TEST_CLIENT_SECRET }}
TEST_APPLICATION_ID: ${{ secrets.SDK_TEST_APPLICATION_ID }}
shell: bash