Skip to content

chore(deps-dev): bump org.junit.jupiter:junit-jupiter-api from 5.11.4 to 6.0.1 in /tools #860

chore(deps-dev): bump org.junit.jupiter:junit-jupiter-api from 5.11.4 to 6.0.1 in /tools

chore(deps-dev): bump org.junit.jupiter:junit-jupiter-api from 5.11.4 to 6.0.1 in /tools #860

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
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/controlling-permissions-for-github_token
permissions: {}
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
# see https://github.com/actions/checkout
uses: actions/checkout@v5
- 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