From 8ac1f822ac0fd9cf1c769c5f55ead143ee096332 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Thu, 29 Oct 2020 13:18:07 +0100 Subject: [PATCH] Enhancement: Use GithubActions instead of Travis for tests --- .github/workflows/ci.yml | 64 +++++++++++++++++++++------------------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b64bb375..b480c79ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -132,34 +132,36 @@ jobs: - name: "Run tests" working-directory: ${{ matrix.extension}} run: ../../vendor/bin/simple-phpunit - - integration-tests: - needs: - - 'tests' - - name: "Integration tests with PHP ${{ matrix.php-version }}" - - runs-on: 'ubuntu-20.04' - - continue-on-error: true - - strategy: - matrix: - php-version: - - '7.3' - - steps: - - name: "Checkout code" - uses: actions/checkout@v2.3.3 - - - name: "Install PHP with extensions" - uses: shivammathur/setup-php@2.7.0 - with: - coverage: "none" - extensions: "gd, pdo_sqlite" - php-version: ${{ matrix.php-version }} - ini-values: memory_limit=-1 - tools: composer:v2 - - - run: ./drupal_test.sh - shell: "bash" +# +# Drupal does not support Twig 3 now! +# +# integration-tests: +# needs: +# - 'tests' +# +# name: "Integration tests with PHP ${{ matrix.php-version }}" +# +# runs-on: 'ubuntu-20.04' +# +# continue-on-error: true +# +# strategy: +# matrix: +# php-version: +# - '7.3' +# +# steps: +# - name: "Checkout code" +# uses: actions/checkout@v2.3.3 +# +# - name: "Install PHP with extensions" +# uses: shivammathur/setup-php@2.7.0 +# with: +# coverage: "none" +# extensions: "gd, pdo_sqlite" +# php-version: ${{ matrix.php-version }} +# ini-values: memory_limit=-1 +# tools: composer:v2 +# +# - run: ./drupal_test.sh +# shell: "bash"