Update usage of DestinationConnection in function copy_by_key_interval #297
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: CI Tests | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'fastetl/**' | |
- 'tests/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'fastetl/**' | |
- 'tests/**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout FastETL | |
uses: actions/checkout@v3 | |
with: | |
path: FastETL | |
- name: Setup environment | |
working-directory: ./FastETL | |
run: make setup | |
- name: Run Tests | |
working-directory: ./FastETL | |
run: make tests |