From bc70656ec8c06bad1adcc5b49701903e3fef67d1 Mon Sep 17 00:00:00 2001 From: Jitendra Singh Date: Tue, 21 Jan 2020 19:58:11 +0530 Subject: [PATCH] Added php extensions --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 633aa90b0..9c2da1795 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - name: Setup PHP + uses: shivammathur/setup-php@master + with: + php-version: 7.2.0 + extension-csv: curl, intl, mbstring, openssl, pdo, pdo_mysql, tokenizer - name: Copy .env run: php -r "file_exists('.env') || copy('.env.ci', '.env');" - name: Install Dependencies @@ -23,7 +28,7 @@ jobs: DB_DATABASE: database/database.sqlite run: | set -e - @php artisan migrate:fresh --env=testing + @php artisan migrate:fresh --env=ci vendor/bin/codecept run unit vendor/bin/codecept run functional - vendor/bin/codecept run trigger + vendor/bin/codecept run trigger \ No newline at end of file