Skip to content

More tests

More tests #32

Workflow file for this run

name: Connector
on: [pull_request]
env:
IS_CI: 1
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.5'
- name: Install dependencies
run: go get .
working-directory: ./connector
- name: Build Go
run: make build
working-directory: ./connector
- name: Test Go
run: make test
working-directory: ./connector