diff options
author | Valery Piashchynski <[email protected]> | 2020-12-22 11:40:29 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-22 11:40:29 +0300 |
commit | f0c76183d9b1cd1ffd696874720cc82bde54fd14 (patch) | |
tree | 5fc46b0dc06407da77dcaef56cd6214f654bb151 /.github/workflows/build.yml | |
parent | a61992293ca98c27e40ed427ee147a8abb4dcc6c (diff) | |
parent | 5a9507bdc62f0ec62c6a59888257b17806634719 (diff) |
Merge pull request #460 from spiral/release_1.9.1v1.9.1
Release 1.9.1
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5bcbd657..04208eeb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,11 @@ jobs: php: name: Build (PHP ${{ matrix.php }}, ${{ matrix.setup }} setup) runs-on: ubuntu-20.04 - timeout-minutes: 6 + timeout-minutes: 10 strategy: fail-fast: false matrix: - php: [ '7.3', '7.4', '8.0' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] setup: [ basic, lowest ] steps: - name: Set up PHP ${{ matrix.php }} @@ -61,11 +61,11 @@ jobs: golang: name: Build (Go ${{ matrix.go }}, PHP ${{ matrix.php }}) runs-on: ubuntu-20.04 - timeout-minutes: 10 + timeout-minutes: 20 strategy: fail-fast: false matrix: - php: [ '7.3', '7.4', '8.0' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] go: [ '1.14', '1.15' ] steps: - name: Set up Go ${{ matrix.go }} |