Modified docker script to mount tns and wallet_dir in case of assess-migration-bulk command's --fleet-config-file flag #5720
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20" | |
- name: Build | |
run: | | |
cd yb-voyager | |
go build -v ./... | |
- name: Test | |
run: | | |
cd yb-voyager | |
go test -v ./... | |
- name: Vet | |
run: | | |
cd yb-voyager | |
go vet ./... | |
- name: Run staticcheck | |
run: | | |
cd yb-voyager | |
go install honnef.co/go/tools/cmd/staticcheck@2023.1.7 | |
staticcheck ./... |