Bump version to v1.0.3 #3162
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 lint | |
on: [push] | |
jobs: | |
sdk-go-lint: | |
runs-on: ubuntu-latest | |
# Use a matrix strategy to test all the modules simultaneously. | |
strategy: | |
fail-fast: false | |
matrix: | |
MOD_PATH: | |
[./, ./route/google, ./route/here, ./route/osrm, ./route/routingkit] | |
steps: | |
- name: set up go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.3 | |
id: go | |
- name: git clone | |
uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54.1 | |
working-directory: ${{ matrix.MOD_PATH }} |