From 1a0a661fab78252744441443331e47cff6130048 Mon Sep 17 00:00:00 2001 From: cn Date: Fri, 21 Aug 2020 16:51:09 +0200 Subject: [PATCH] ci: update go versions and github actions --- .github/workflows/ci.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bf31f5..9a0664d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,26 +7,23 @@ on: jobs: build: + runs-on: ubuntu-latest strategy: matrix: go: - - '1.11' - - '1.12' - '1.13' - runs-on: ubuntu-latest + - '1.14' + - '1.15' + env: + GO111MODULE: on + GOPROXY: direct + GOSUMDB: off steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} - - name: Set up Make - run: | - sudo apt-get -y install make - name: Build - env: - GO111MODULE: on - GOPROXY: direct - GOSUMDB: off run: | make