Skip to content

Add test case for ibis #10

Add test case for ibis

Add test case for ibis #10

Workflow file for this run

name: ibis CI
on:
pull_request:
paths:
- 'ibis-server/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: ./ibis-server/pyproject.toml
- uses: abatilo/actions-poetry@v2
- name: Setup a local virtual environment
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v4
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
working-directory: ibis-server
run: make install
- name: Start Wren JAVA engine
run: |
cd ./example/duckdb-tpch-example && docker compose --env-file .env up -d
- name: Run tests
env:
WREN_ENGINE_ENDPOINT: http://localhost:8080
run: make test