Remove version update logic from release workflow #19
Workflow file for this run
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
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 }} |