From ca2b54f14119b23ed409c0cd81486304c28c4022 Mon Sep 17 00:00:00 2001 From: "Travis A. O'Brien" Date: Sun, 5 Nov 2023 08:39:10 -0500 Subject: [PATCH] Add linting tests --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca104cf..882da66 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,8 +22,11 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - pip install pytest + pip install pytest ruff pip install -e . + - name: Run linting tests on files in src + run: ruff src + - name: Run tests run: pytest \ No newline at end of file