Skip to content

Commit

Permalink
gha: add go 1.16-rc1, rm 1.13.x
Browse files Browse the repository at this point in the history
Go 1.13.x is not supported since go 1.15 was released in August 2020.

Go 1.16 will be released this month, it makes sense to try it now.

Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed Feb 10, 2021
1 parent 0434b6a commit d79b5be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
go-version: [1.14.x, 1.15.x, 1.16.0-rc1]
criu_branch: [master, criu-dev]

steps:
Expand All @@ -27,6 +27,7 @@ jobs:
- name: install go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
stable: '!contains(${{ matrix.go-version }}, "beta") && !contains(${{ matrix.go-version }}, "rc")'
go-version: ${{ matrix.go-version }}

- name: Run tests
Expand Down

0 comments on commit d79b5be

Please sign in to comment.