Skip to content

Commit

Permalink
Attempting to fix pre-commit problems
Browse files Browse the repository at this point in the history
  • Loading branch information
atong01 committed Nov 23, 2023
1 parent 9913601 commit a112ff1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/code-quality-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,10 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run pre-commits
uses: pre-commit/[email protected]
5 changes: 5 additions & 0 deletions .github/workflows/code-quality-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Find modified files
id: file_changes
uses: trilom/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
license="MIT",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(exclude=['tests', 'tests.*']),
packages=find_packages(exclude=["tests", "tests.*"]),
)

0 comments on commit a112ff1

Please sign in to comment.