Skip to content

Create an API to allow any input GI to be mapped to the Bedrock GI Database model #64

Create an API to allow any input GI to be mapped to the Bedrock GI Database model

Create an API to allow any input GI to be mapped to the Bedrock GI Database model #64

Workflow file for this run

name: Run Python 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