summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-23 23:50:00 +0300
committerValery Piashchynski <[email protected]>2021-01-23 23:50:00 +0300
commit684cfa55dfc6c89c79e324b5362d966d3c37f233 (patch)
treeb8f3fdc27cea143f28bd647361d707fc8e967f32 /.github
parenta0fd0c5f7c8c5e9a45e75e7751576aa107cbb3bb (diff)
Use ubuntu-20.04 in the CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b1ecb5d1..93bc030b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -20,7 +20,7 @@ jobs:
matrix:
php: [ "7.4", "8.0" ]
go: [ "1.14", "1.15" ]
- os: [ ubuntu-latest, windows-latest, macos-latest ]
+ os: [ ubuntu-20.04, windows-latest, macos-latest ]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go>
@@ -123,7 +123,7 @@ jobs:
go test -v -race -tags=debug ./tests/plugins/kv/memory
- name: Run golang tests on Linux
- if: ${{ matrix.os == 'ubuntu-latest' }}
+ if: ${{ matrix.os == 'ubuntu-20.04' }}
run: |
docker-compose -f ./tests/docker-compose.yaml up -d
mkdir ./coverage-ci
@@ -157,7 +157,7 @@ jobs:
cat ./coverage-ci/*.txt > ./coverage-ci/summary.txt
- uses: codecov/codecov-action@v1 # Docs: <https://github.com/codecov/codecov-action>
- if: ${{ matrix.os == 'ubuntu-latest' }} # codecov only from linux
+ if: ${{ matrix.os == 'ubuntu-20.04' }} # codecov only from linux
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage-ci/summary.txt
@@ -165,7 +165,7 @@ jobs:
golangci-lint:
name: Golang-CI (lint)
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v2