From 9d8c22454d3bb2ac53f8bf75d4600f815ec24e46 Mon Sep 17 00:00:00 2001 From: robertnicjoo Date: Wed, 6 Jan 2021 10:16:07 +0700 Subject: [PATCH] updated dependencies --- .github/workflows/laravel.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/laravel.yml diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml deleted file mode 100644 index d84245b..0000000 --- a/.github/workflows/laravel.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Laravel - -on: [push] - -jobs: - laravel-tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Copy .env - run: php -r "file_exists('.env') || copy('.env.example', '.env');" - - name: Install Dependencies - run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist - - name: Generate key - run: php artisan key:generate - - name: Create Database - run: | - mkdir -p database - touch database/database.mysql - - name: Execute tests (Unit and Feature tests) via PHPUnit - env: - DB_CONNECTION: mysql - DB_DATABASE: database/database.mysql - run: vendor/bin/phpunit