Skip to content

CI: add something to run php tests #55

CI: add something to run php tests

CI: add something to run php tests #55

Workflow file for this run

name: PHP CI
on:
push:
branches:
- main
paths:
- 'php/**'
- '.github/workflows/php-ci.yml'
pull_request:
paths:
- 'php/**'
- '.github/workflows/php-ci.yml'
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
version: latest
configuration: "php/phpunit.xml"