0
1
mirror of https://github.com/actions/setup-go synced 2024-05-31 18:28:04 +02:00
Set up your GitHub Actions workflow with a specific version of Go
Go to file
Danny McCormick 706cf65fdf
Add checkout
2019-07-23 15:15:32 -04:00
__tests__ Add installer 2019-06-20 13:28:39 -04:00
.github Update workflow.yml (#6) 2019-07-23 13:24:08 -04:00
docs Add setup-go 2019-06-19 09:44:17 -04:00
lib Merge branch 'master' into features/matcher 2019-06-26 21:02:35 -04:00
node_modules Update toolkit 2019-06-24 15:05:39 -04:00
src Merge branch 'master' into features/matcher 2019-06-26 21:02:35 -04:00
toolkit Update toolkit 2019-06-24 15:05:39 -04:00
.gitignore Add setup-go 2019-06-19 09:44:17 -04:00
.prettierrc.json Add setup-go 2019-06-19 09:44:17 -04:00
action.yml Update action.yml 2019-07-09 12:44:13 -04:00
jest.config.js Add setup-go 2019-06-19 09:44:17 -04:00
LICENSE Add setup-go 2019-06-19 09:44:17 -04:00
package-lock.json Update toolkit 2019-06-24 15:05:39 -04:00
package.json Fix husky 2019-07-12 11:01:07 -04:00
README.md Add checkout 2019-07-23 15:15:32 -04:00
tsconfig.json Add setup-go 2019-06-19 09:44:17 -04:00

setup-go

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

Usage

See action.yml

Basic:

actions:
- uses: actions/checkout@latest
- uses: actions/setup-go@latest
  with:
    version: 1.9.3 // The Go version to download (if necessary) and use.
- run: go run hello.go

Matrix Testing:

jobs:
  build:
    strategy:
      matrix:
        go: [ 1.8, 1.9.3, 1.10 ]
    name: Go ${{ matrix.go }} sample
    actions:
      - uses: actions/checkout@latest
      - name: Setup go
        uses: actions/setup-go@latest
        with:
          version: ${{ matrix.go }}
      - run: go run hello.go

License

The scripts and documentation in this project are released under the MIT License

Contributions

Contributions are welcome! See Contributor's Guide