From 4b3ec1c9eca7323a0c1b3d13a8937ffa7287292f Mon Sep 17 00:00:00 2001 From: Jitendra Singh Date: Tue, 21 Jan 2020 20:35:45 +0530 Subject: [PATCH] Removed ci.yml --- .github/workflows/ci.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 043d7f95b..000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Bagisto - -on: [push] - -jobs: - laravel-tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - - name: Setup PHP - - uses: shivammathur/setup-php@v1 - with: - extensions: intl - - name: Copy .env - run: php -r "file_exists('.env') || copy('.env.ci', '.env');" - - name: Install Dependencies - run: composer install - - name: Generate key - run: php artisan key:generate - - name: Create Database - run: | - mkdir -p database - touch database/database.sqlite - - name: Execute tests (Unit, Feature and Trigger tests) via Codeception - env: - DB_CONNECTION: sqlite - DB_DATABASE: database/database.sqlite - run: | - set -e - @php artisan migrate:fresh --env=ci - vendor/bin/codecept run unit - vendor/bin/codecept run functional - vendor/bin/codecept run trigger \ No newline at end of file