Skip to content

Updated info

Updated info #57

Workflow file for this run

name: Build and test [SQLite]
on:
pull_request:
branches:
- 'main'
types: [ opened, synchronize, reopened, ready_for_review ]
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
if: success()
- name: Setup PHP with coverage driver
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: pcov
- name: Setup
if: success()
run: |
php -v
composer install --no-interaction
touch eloquentdocs.sqlite
mv .env.sqlite .env
- name: PHPUnit tests
if: success()
run: |
composer test