Skip to content

Sizing Calculator: added unit tests and minor restructuring #1

Sizing Calculator: added unit tests and minor restructuring

Sizing Calculator: added unit tests and minor restructuring #1

Workflow file for this run

name: "run unit tests"
on:
push:
branches:
- main
paths:
- 'yb-voyager/src/migassessment/**'
pull_request:
branches:
- main
paths:
- 'yb-voyager/src/migassessment/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '^1.20'
- name: Run tests
run: |
cd yb-voyager
go test ./... -v