Skip to content

Enhance descriptions of bom-ref #441

Enhance descriptions of bom-ref

Enhance descriptions of bom-ref #441

Workflow file for this run

# docs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: PHP CI
on:
push:
branches: ['master', 'main']
pull_request:
workflow_dispatch:
defaults:
run:
working-directory: tools/src/test/php
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
# see https://github.com/actions/checkout
uses: actions/checkout@v4
- name: Setup PHP
# see https://github.com/shivammathur/setup-php
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
tools: composer:v2
- name: Install Depenencies
run: composer install
- name: Run test
run: composer run test