Skip to content

Resolve Sentry noise from health probes and stabilize usage metrics tests #715

Resolve Sentry noise from health probes and stabilize usage metrics tests

Resolve Sentry noise from health probes and stabilize usage metrics tests #715

Workflow file for this run

name: Lint Core
on:
- push
- pull_request
permissions:
contents: read
jobs:
lint-core:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: cd core && python -m pip install -r requirements.txt
- name: Check core Python formatting with Ruff
run: cd core && ruff format --check nurse_scheduling tests
- name: Lint core Python with Ruff
run: cd core && ruff check nurse_scheduling tests