Skip to content

Update more code to use SQLAlchemy 2.0 API #27

Update more code to use SQLAlchemy 2.0 API

Update more code to use SQLAlchemy 2.0 API #27

Workflow file for this run

name: ci
on: [push]
env:
PYTHON_VERSION: '3.9'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run pre-commit
uses: pre-commit/[email protected]
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
sudo apt-get install -y librrd-dev
pdm sync -G mypy
- name: Run mypy
run: |
pdm run mypy meshinfo
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y librrd-dev
pdm sync -G testing
- name: Run pytest
run: |
pdm run pytest --cov=meshinfo
env:
MESHMAP_COLLECTOR_DATA_DIR: "."
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
sudo apt-get install -y librrd-dev
pdm sync -G docs
- name: Run Sphinx
run: pdm run sphinx-build -W --keep-going -b html docs docs/_build/html