Sync testing infrastructure with "template" assets (#1388)
* [skip changelog] Sync testing infrastructure with "template" assets We have assembled a collection of reusable project assets: https://github.com/arduino/tooling-project-assets These will be used in the repositories of all Arduino tooling projects. Some minor improvements and standardizations have been made in the upstream "template" assets, and those are hereby introduced to this repository. Notable: - Configure paths filters to avoid unnecessary workflow runs - Increased parallelism - Improved maintainability * Remove obsolete testing tasks The sync with the template testing assets has resulted in new standardized names for some of the test runner tasks: - `test-unit` -> `go:test` - `test-integration` -> `go:test-integration` * [skip changelog] Update package names in imports As of Go 1.7 the `golang.org/x/net/context` package is available in the standard library under the name `context`. * [skip changelog] Tidy root module dependencies Result of running `go mod tidy` with Go 1.16.6. * [skip changelog] Tidy `github.com/arduino/arduino-cli/arduino/discovery/discovery_client` module's dependencies Result of running `go mod tidy` with Go 1.16.6. * [skip changelog] Tidy `github.com/arduino/arduino-cli/term_example` module's dependencies Result of running `go mod tidy` with Go 1.16.6. * [skip changelog] Tidy `github.com/arduino/arduino-cli/docsgen` module's dependencies Result of running `go mod tidy` with Go 1.16.6.
Showing
This diff is collapsed.
... | ... | @@ -43,7 +43,7 @@ require ( |
go.bug.st/serial v1.1.2 | ||
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45 // indirect | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 | ||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 | ||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect | ||
golang.org/x/sys v0.0.0-20210503173754-0981d6026fa6 // indirect | ||
golang.org/x/text v0.3.6 | ||
google.golang.org/genproto v0.0.0-20210504143626-3b2ad6ccc450 | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment