Skip to content

Update logic of response generation in case of dataset usage #445

Update logic of response generation in case of dataset usage

Update logic of response generation in case of dataset usage #445

Workflow file for this run

name: CI - PR Checks
on:
pull_request:
branches:
- main
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Sanity check repo contents
run: ls -la
- name: Set up go with cache
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
- name: Install libzmq dependencies (kvcache/kvevents)
run: |
sudo apt-get update
make download-zmq
- name: Set PKG_CONFIG_PATH
run: echo "PKG_CONFIG_PATH=/usr/lib/pkgconfig" >> $GITHUB_ENV
- name: Run lint checks
uses: golangci/golangci-lint-action@v8
with:
version: 'v2.4.0'
args: "--config=./.golangci.yml"
- name: Run go test
shell: bash
run: |
echo "Running tests with Ginkgo..."
make test