Skip to content

add support for +srv mongodb uris. #38

add support for +srv mongodb uris.

add support for +srv mongodb uris. #38

Workflow file for this run

name: Python package
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Python Ruff Lint and Format
uses: adityabhangle658/ruff-python-lint-format-check-pr@v1.0.3
- name: Run tests with pytest
run: |
pytest -v --tb=short .