From 148a417f79e2cb7587a3e89918b41f3091fd8241 Mon Sep 17 00:00:00 2001 From: Sahil D Shah Date: Tue, 20 Jan 2026 17:18:22 -0500 Subject: [PATCH] WIP to run tests in the workflow --- .github/workflows/python-app.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index dcb7a4bb..f79b552b 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -5,9 +5,9 @@ name: Python application on: push: - branches: [ "listOfMed" ] + branches: [ "develop" ] pull_request: - branches: [ "listOfMed" ] + branches: [ "develop" ] permissions: contents: read @@ -27,3 +27,6 @@ jobs: run: pipx install ruff - name: Lint code with Ruff run: ruff check --output-format=github --target-version=py39 + - name: Test with pytest + run: | + pytest \ No newline at end of file