Skip to content

Merge pull request #11 from WebFiori/dev #38

Merge pull request #11 from WebFiori/dev

Merge pull request #11 from WebFiori/dev #38

Workflow file for this run

name: PHP Build
on:
push:
branches: [ main , dev]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: 8.3
extensions: mbstring, sqlsrv, iconv
tools: phpunit, composer
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Execute Tests
run: phpunit --configuration tests/phpunit.xml