Skip to content

Test workflow

Test workflow #16

Workflow file for this run

name: Main deployment workflow
run-name: Test workflow
on:
push:
branches: [ main ]
jobs:
tests:
name: Run tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- 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
coverage: none
- name: Run composer install
run: composer install -n --prefer-dist
- name: Prepare Laravel Application
run: |
cp .env.example .env
php artisan key:generate
- name: Create empty test database
run: |
touch database/database_testing.sqlite
- name: Run tests
run: php artisan test