Skip to content

chore(deps): bump org.apache.commons:commons-text from 1.2 to 1.12.0 in /tools #270

chore(deps): bump org.apache.commons:commons-text from 1.2 to 1.12.0 in /tools

chore(deps): bump org.apache.commons:commons-text from 1.2 to 1.12.0 in /tools #270

Workflow file for this run

# docs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: CT PHP
on:
push:
branches: ['master', 'main']
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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