From 3b2d661b2250f7166dc8e96b1e009cf27eecd48d Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 8 Oct 2020 17:25:32 +0200 Subject: [PATCH] Try skipping checkout --- .github/workflows/main.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 498a6d9..8127220 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,22 +4,21 @@ on: push: jobs: run: + runs-on: ubuntu-latest container: shivammathur/node:bionic-${{ matrix.tag }} - runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] tag: ["amd64", "i386"] php-versions: ["7.0", "7.1", "7.2", "7.3", "7.4"] - name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.os }} ${{ matrix.tag }} + name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.tag }} steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup PHP # Inputs to manual.sh are in this order - php-versions, extensions, ini-values, coverage, tools run: curl -sL https://setup-php.com/manual.sh | bash -s ${{ matrix.php }} "mbstring, intl, sockets" "memory_limit=-1" "xdebug" + - name: Checkout + uses: actions/checkout@v2 + - name: Check environment run: | php --version