Skip to content

Create an experimental marimo nb for creating relational dbs with a p… #9

Create an experimental marimo nb for creating relational dbs with a p…

Create an experimental marimo nb for creating relational dbs with a p… #9

Workflow file for this run

name: Tests
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install bedrock-ge with testing dependencies
run: uv sync --locked --group tests
- name: Run tests
run: uv run pytest tests