Add duckdb implementation #119
This file contains hidden or 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: mara-db | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | |
| steps: | |
| - name: Chechout code | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup python | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install application | |
| env: | |
| pythonversion: ${{ matrix.python-version }} | |
| run: | | |
| python -c "import sys; print(sys.version)" | |
| pip install .[test] | |
| echo Finished successful build with Python $pythonversion | |
| - name: Test with pytest | |
| run: | | |
| make tests/local_config.py | |
| pytest -v tests |