diff options
author | Valery Piashchynski <[email protected]> | 2020-12-02 10:33:58 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-02 10:33:58 +0300 |
commit | 0e5f37d059405b09e162bc7d16b0ec3fff3f3e14 (patch) | |
tree | fc390fa9216f396bad29b5ecc493febbce1b7c6e /.github/workflows/ci-build.yml | |
parent | a2e7b9ffc39ae982d63a1a87dc358447d35d8bc9 (diff) |
Release 1.9.0
Diffstat (limited to '.github/workflows/ci-build.yml')
-rw-r--r-- | .github/workflows/ci-build.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 930d1c17..ded84778 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -1,6 +1,6 @@ name: CI -on: [push, pull_request] +on: [ push, pull_request ] jobs: build: @@ -9,9 +9,9 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3, 7.4, 8.0] - go: [1.14, 1.15] - os: [ubuntu-latest] + php: [ 7.3, 7.4, 8.0 ] + go: [ 1.14, 1.15 ] + os: [ ubuntu-20.04 ] env: GO111MODULE: on steps: @@ -100,7 +100,7 @@ jobs: golangci-check: name: runner / golangci-lint - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Check out code into the Go module directory uses: actions/checkout@v1 @@ -111,7 +111,7 @@ jobs: image: name: Build docker image - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Check out code uses: actions/checkout@v2 |