bit of cleanup

This commit is contained in:
Bryan MacFarlane
2020-02-09 14:39:34 -05:00
parent f4b0281c15
commit 7af81a4a65
3 changed files with 22 additions and 11 deletions

View File

@ -11,6 +11,22 @@ 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
- registering problem matchers for error output
# V2 Beta
The V2 beta offers:
- Proxy Support
- stable input
- Bug Fixes (including issues around version matching and semver)
```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2-beta
with:
go-version: '^1.13.1' # The Go version to download (if necessary) and use.
- run: go version
```
# Usage
See [action.yml](action.yml)