You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CI workflow currently uses a matrix strategy to run the lint-go and test jobs, but this can be improved to make the workflow run faster by avoiding unnecessary steps:
The lint-go job will be changed to only run on the currently latest stable Go version 1.15.x only on Linux because golangci-lint doesn't care about the Go version and OS it runs on but only statically checks the source code.
These changes will also help to keep the required GitHub Action run minutes for the account of this repository as small as possible without wasting resources for unnecessary tasks.
The text was updated successfully, but these errors were encountered:
Before the CI workflow used a matrix strategy to run the `lint-go` and
`test` jobs, but this was improved to make the workflow run faster by
avoiding unnecessary steps:
- The `lint-go` job has been changed to only run on the currently latest
stable Go version `1.15.x` [1] only on Linux because `golangci-lint`
doesn't care about the Go version and OS it runs on but only
statically checks the source code.
- The `test` job has been changed to only run on the currently latest
stable Go version `1.15.x` [1].
These changes also help to keep the required GitHub Action run minutes
for the account of this repository as small as possible without wasting
resources for unnecessary tasks.
[1]: https://golang.org/doc/go1.15GH-16
Before the CI workflow used a matrix strategy to run the `lint-go` and
`test` jobs, but this was improved to make the workflow run faster by
avoiding unnecessary steps:
- The `lint-go` job has been changed to only run on the currently latest
stable Go version `1.15.x` [1] only on Linux because `golangci-lint`
doesn't care about the Go version and OS it runs on but only
statically checks the source code.
- The `test` job has been changed to only run on the currently latest
stable Go version `1.15.x` [1].
These changes also help to keep the required GitHub Action run minutes
for the account of this repository as small as possible without wasting
resources for unnecessary tasks.
[1]: https://golang.org/doc/go1.15ResolvesGH-16
The CI workflow currently uses a matrix strategy to run the
lint-go
andtest
jobs, but this can be improved to make the workflow run faster by avoiding unnecessary steps:lint-go
job will be changed to only run on the currently latest stable Go version1.15.x
only on Linux becausegolangci-lint
doesn't care about the Go version and OS it runs on but only statically checks the source code.test
job will be changed to only run on the currently latest stable Go version1.15.x
.These changes will also help to keep the required GitHub Action run minutes for the account of this repository as small as possible without wasting resources for unnecessary tasks.
The text was updated successfully, but these errors were encountered: