这是indexloc提供的服务,不要输入任何密码
Skip to content

[API-BOT] Update OpenAPI spec and regenerate SDK #144

[API-BOT] Update OpenAPI spec and regenerate SDK

[API-BOT] Update OpenAPI spec and regenerate SDK #144

Workflow file for this run

name: Linting
on:
pull_request:
types: [ labeled, opened, reopened, synchronize ]
jobs:
lint-php:
name: Run PHP lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: composer
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PHP lint (phpcs)
run: composer run lint