Skip to content

Commit

Permalink
include deps in linting; rm auto triggers for lint (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
leondz committed May 10, 2024
1 parent 8919da7 commit 0b7dfd3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: "Garak linting"

on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:

jobs:
Expand All @@ -23,6 +19,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pylint garak
pylint -v garak

0 comments on commit 0b7dfd3

Please sign in to comment.