|
|
@ -7,6 +7,7 @@
|
|
|
|
This action sets up a go environment for use in actions by:
|
|
|
|
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 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
|
|
|
|
- registering problem matchers for error output
|
|
|
|
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
# Usage
|
|
|
@ -30,7 +31,7 @@ jobs:
|
|
|
|
runs-on: ubuntu-16.04
|
|
|
|
runs-on: ubuntu-16.04
|
|
|
|
strategy:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
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
|
|
|
|
name: Go ${{ matrix.go }} sample
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/checkout@master
|
|
|
|