Hacky implementation to test use of prepared statements #744
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
node: | |
name: Test on Node | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "npm" | |
- name: Install Node dependencies | |
run: npm ci | |
- run: npm run lint | |
- run: npm run build | |
- run: npm run test | |
python: | |
name: Test on Python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".python-version" | |
cache: "pip" | |
cache-dependency-path: "**/pyproject.toml" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install hatch | |
- name: Build and lint Widget | |
run: | | |
cd packages/widget | |
hatch build | |
hatch fmt --check | |
- name: Build, lint, and test Server | |
run: | | |
cd packages/duckdb-server | |
hatch build | |
hatch fmt --check | |
hatch run test:cov |