This is an automated email from the ASF dual-hosted git repository.

gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 11fdc59  only lint v3
11fdc59 is described below

commit 11fdc59f335f669c30a723f66379c59899089037
Author: Greg Stein <[email protected]>
AuthorDate: Wed Sep 24 01:08:38 2025 -0500

    only lint v3
---
 .github/workflows/linting.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml
index 7bc9cde..192ec51 100644
--- a/.github/workflows/linting.yml
+++ b/.github/workflows/linting.yml
@@ -3,10 +3,10 @@ name: Linting
 on:
   push:
     paths:
-      - '**/*.py'
+      - 'v3/**/*.py'
       - '**/linting.yml'
       - 'pylintrc'
-      - 'requirements.txt'
+      - 'v3/requirements.txt'
 
   pull_request:
 
@@ -33,8 +33,8 @@ jobs:
         python-version: ${{ matrix.python-version }}
     - name: Install dependencies
       run: |
-        python -m pip install -r requirements.txt
+        python -m pip install -r v3/requirements.txt
         python -m pip install pylint
     - name: Testing with pylint
       run: |
-          pylint pysteve -d W0311 # enable later
+          pylint v3

Reply via email to