Skip to content

Add test case for ibis #2

Add test case for ibis

Add test case for ibis #2

Workflow file for this run

name: ibis CI
on:
pull_request:
paths:
- 'ibis-server/**'
push:
branches:
- 'feature/ibis/add-test'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
defaults:
run:
working-directory: ibis-server
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
- uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.7.1
- name: Install dependencies
run: poetry install
- name: Start Wren JAVA engine
run: |
cd ../example/duckdb-tpch-example && docker compose --env-file .env up
- name: Run tests
env:
WREN_ENGINE_ENDPOINT: http://localhost:8080
run: make test