Skip to content

Merge pull request #3 from SemanticMediaWiki/paladox-patch-1 #22

Merge pull request #3 from SemanticMediaWiki/paladox-patch-1

Merge pull request #3 from SemanticMediaWiki/paladox-patch-1 #22

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
test:
name: "PHPUnit: PHP ${{ matrix.php }}"
strategy:
matrix:
include:
- php: '8.0'
- php: '8.1'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
- name: Install dependencies
run: composer install
- name: Run tests
run: composer phpunit