Skip to content

Add integration tests for source and destination connectors #8

Add integration tests for source and destination connectors

Add integration tests for source and destination connectors #8

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/ci.yaml'
pull_request:
branches: [ main ]
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/ci.yaml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install dependencies
run: |
go get .
- name: Run tests
run: go test -race -v ./...