Skip to content

fix: wip

fix: wip #89

Workflow file for this run

name: Tests
on:
push:
pull_request:
types: [opened]
paths-ignore:
- 'frontend/**'
jobs:
laravel-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.1 ]
steps:
- uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: imagick
- name: Testing PHP version
run: php -v

Check failure on line 30 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
- name: Install Dependencies
run: |
composer clear-cache
# composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
composer install --no-ansi --no-interaction --no-scripts --prefer-dist
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Prepare Laravel Application
run: |
cp .env.testing .env
php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: composer test