Skip to content

Commit

Permalink
clean up-- make simlar to benchmarking workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudTT authored Apr 9, 2024
1 parent 87b0262 commit 9a4ed16
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/clean-style-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ name: Clean and Lint
on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize, assigned, review_requested]
types:
- opened
- reopened
- synchronize
- assigned
- review_requested


jobs:
clean-and-lint:
Expand All @@ -21,9 +27,9 @@ jobs:
working-directory: model_demos
run: |
python -m venv venv
source venv/bin/activate && \
pip install --upgrade pip==24.0 && \
pip install -r requirements-dev.txt && \
source venv/bin/activate
pip install --upgrade pip==24.0
pip install -r requirements-dev.txt
make clean
make clean_tt
make style
Expand Down

0 comments on commit 9a4ed16

Please sign in to comment.