Skip to content

Commit

Permalink
connector ci configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhaev26 committed Jan 7, 2024
1 parent ef99b6a commit 70aaa11
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/check_connector_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: BUILD_CONNECTOR_API

on:
push:
branches:
- main
pull_request:
branches:
- main


jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4

- name: Update & Download Deps
run: |
cd connector/
go mod tidy
- name: Build Connector API
run: go build -C connector/ -o connector


0 comments on commit 70aaa11

Please sign in to comment.