mirror of
https://github.com/actions/setup-go.git
synced 2025-06-28 07:53:43 +00:00
bit of cleanup
This commit is contained in:
parent
f4b0281c15
commit
7af81a4a65
3 changed files with 22 additions and 11 deletions
16
README.md
16
README.md
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue