audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

ec6c01e9a31f284da7fe5ed086f3921532cef80e

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-08-07T02:22:10Z

Run Ruff CI on pyproject and workflow changes too

Dependency and workflow edits affect the lint run, so trigger on them in
addition to '**.py'.
 .github/workflows/ruff.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml
index 25d6fcc..ed8686a 100644
--- a/.github/workflows/ruff.yml
+++ b/.github/workflows/ruff.yml
@@ -4,6 +4,8 @@ on:
   push:
     paths:
       - '**.py'
+      - 'pyproject.toml'
+      - '.github/workflows/ruff.yml'
 
 jobs:
   build: