-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable GH Actions #1
base: master
Are you sure you want to change the base?
Conversation
0a775b3
to
a372110
Compare
go-version: [1.16.x] | ||
platform: [ubuntu-latest] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change will make it easier to add additional versions and platforms in the future with minimal diffs.
go-version: [1.16.x] | |
platform: [ubuntu-latest] | |
go-version: | |
- 1.16 | |
platform: | |
- ubuntu-latest |
|
||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make use of the matrix version:
go-version: 1.16 | |
go-version: ${{ matrix.go-version }} |
Is this PR still a thing? I'd like to understand how current Go versions are supported. |
Hi @kwk , yeah kinda. I was quickly testing the github actions integration but never really got around to fully implement it. From what I know, I don't think this repo has any limitations on any specific Go version. If you want to contribute for the GH actions setup, please feel free to do so 😃 . |
No description provided.