Skip to content

Commit

Permalink
🚧
Browse files Browse the repository at this point in the history
  • Loading branch information
Rias committed Mar 3, 2020
1 parent 96b49e9 commit 3b2bead
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none

- name: Create database
run: |
mysql -u root -proot -e 'CREATE DATABASE IF NOT EXISTS nova_tags_field;SET GLOBAL time_zone = "+00:00";'
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -proot mysql
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
Expand All @@ -44,3 +49,5 @@ jobs:

- name: Execute tests
run: vendor/bin/phpunit
env:
DB_PASSWORD: root

0 comments on commit 3b2bead

Please sign in to comment.