diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-02 09:39:42 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-02 09:39:42 +0000 |
commit | b22078ce707d21ac17ea1727a4174c44ef57ae69 (patch) | |
tree | 2583c7cdde2dd37cf067a23ee70a6aa793163193 /.github/workflows/ci-build.yml | |
parent | a2e7b9ffc39ae982d63a1a87dc358447d35d8bc9 (diff) | |
parent | 453133e7bb876a5f678ebd0847221495efbcd1ba (diff) |
Merge #424v1.9.0
424: Release 1.9.0 r=48d90782 a=48d90782
Co-authored-by: Valery Piashchynski <[email protected]>
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 |