Skip to content

Bunch of fixes to make the Presto stuff work with DBeaver better #6

Bunch of fixes to make the Presto stuff work with DBeaver better

Bunch of fixes to make the Presto stuff work with DBeaver better #6

Workflow file for this run

name: Buena Vista Unit Tests
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- name: Check out the repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
pip install .
- name: Run tests
run: |
pytest tests/