Skip to content

Bump the production-dependencies group across 1 directory with 8 updates #99

Bump the production-dependencies group across 1 directory with 8 updates

Bump the production-dependencies group across 1 directory with 8 updates #99

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, redis, relay
coverage: none
- name: Composer install
uses: "ramsey/composer-install@v2"
- name: Prepare Laravel Application
run: |
cp .env.example .env
php artisan key:generate
- name: Run Tests
run: ./vendor/bin/phpunit