Files
newznab-tmux-NNTmux/.github/workflows/laravel.yml
T
2023-04-04 22:24:52 +02:00

29 lines
632 B
YAML

name: Run tests
on: [push]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, 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.test .env
php artisan key:generate
- name: Run tests
run: php artisan test