Skip to content

Generalize datastore analysis and cleanup tools #3

Generalize datastore analysis and cleanup tools

Generalize datastore analysis and cleanup tools #3

Workflow file for this run

name: pr
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install
run: |
python -m pip install -U pip
python -m pip install .
python -m pip install pytest ruff black build pip-audit
- name: Lint
run: |
ruff check .
black --check .
- name: Test
run: pytest -q
- name: Build and verify
run: |
python -m build
twine check dist/* || true
- name: Security audit
run: |
pip-audit -r requirements.txt || true