-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #435 from nextmv-io/merschformann/retire-deprecate…
…d-move-packages Removing deprecated packages and restructure for retiring plugins
- Loading branch information
Showing
455 changed files
with
91 additions
and
66,980 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: go test | ||
on: [push] | ||
jobs: | ||
sdk-go-build-test: | ||
runs-on: ubuntu-latest | ||
# Use a matrix strategy to test all the modules simultaneously. | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
MOD_PATH: | ||
[ | ||
./, | ||
./measure/google, | ||
./measure/here, | ||
./measure/osrm, | ||
./measure/routingkit, | ||
] | ||
steps: | ||
# Checks out the changes. | ||
- name: git clone | ||
uses: actions/checkout@v4 | ||
|
||
# Sets up Go with the version set before. | ||
- name: set up go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22 | ||
cache-dependency-path: | | ||
**/go.sum | ||
**/go.mod | ||
# Builds the Go code. | ||
- name: go build | ||
run: go build -v ./... | ||
working-directory: ${{ matrix.MOD_PATH }} | ||
|
||
# Runs the Go tests. | ||
- name: go test | ||
run: go test ./... | ||
working-directory: ${{ matrix.MOD_PATH }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1.0.5-dev.0 | ||
v1.0.5-dev.2 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.