diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml deleted file mode 100644 index 2cab0aa0..00000000 --- a/.github/workflows/php.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: PHP Composer - -on: - push: - branches: [ config ] - pull_request: - branches: [ config ] - -jobs: - build: - - runs-on: ubuntu-16.04 - - steps: - - uses: actions/checkout@v2 - - - name: Validate composer.json and composer.lock - run: composer validate - - - name: Cache Composer packages - id: composer-cache - uses: actions/cache@v2 - with: - path: vendor - key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-php- - - - name: Install dependencies - if: steps.composer-cache.outputs.cache-hit != 'true' - run: composer install --prefer-dist --no-progress --no-suggest - - # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" - # Docs: https://getcomposer.org/doc/articles/scripts.md - - - name: Run test suite - run: composer run-script test diff --git a/composer.json b/composer.json index fce5e9a7..6d93a6ef 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,5 @@ { - "name": "leftypol/leftypol", - "description": "An imageboard based on lainchans", "require": { - "php": "5.6.40", "phpunit/phpunit": "^5" - }, - "scripts":{ - "test": "vendor/bin/phpunit tests" } }