Skip to content

fix: resolved the issue in columnmap #98

fix: resolved the issue in columnmap

fix: resolved the issue in columnmap #98

Workflow file for this run

name: Test Cases
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: [3.11]
poetry-version: [1.6.1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: make install_deps INSTALL_DEV=true
- name: Run tests
run: make test
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
DEBUG_MODE_ON: "true"