Skip to content

add migration code to download from one instance and upload to another #195

add migration code to download from one instance and upload to another

add migration code to download from one instance and upload to another #195

Workflow file for this run

name: PR Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.16.15, 1.17.13, 1.18.8]
steps:
- uses: actions/checkout@v2
- name: Set up go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
go version
make build
- name: Check Code Formatting
run: |
diff -u <(echo -n) <(go fmt ./...)
- name: Tests
run: |
make test