From 86fdc0f1ef746a47d134dc1c21a553d995a27262 Mon Sep 17 00:00:00 2001 From: Ivan Trubach Date: Wed, 18 Dec 2019 19:47:41 +0300 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f035f2c..2b91d6a 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ This action sets up a go environment for use in actions by: - optionally downloading and caching a version of Go by version and adding to PATH +- optionally building and caching Go tip (master branch) from source - registering problem matchers for error output # Usage @@ -30,7 +31,7 @@ jobs: runs-on: ubuntu-16.04 strategy: matrix: - go: [ '1.8', '1.9.3', '1.10.x' ] + go: [ '1.8', '1.9.3', '1.10.x', 'latest', 'tip' ] name: Go ${{ matrix.go }} sample steps: - uses: actions/checkout@master