Skip to content

Commit

Permalink
try changing job to only run in python lib
Browse files Browse the repository at this point in the history
  • Loading branch information
LucienMorey committed Nov 13, 2024
1 parent d4f853b commit 4cf0787
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
uses: liskin/gh-problem-matcher-wrap@v3
with:
linters: mypy
run: mypy --show-column-numbers --exclude=build photon-lib
run: |
cd photon-lib/py
mypy --show-column-numbers --exclude=build .
- name: Upload artifacts
Expand Down
2 changes: 2 additions & 0 deletions photon-lib/py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tool.mypy]
exclude = ["build","setup.py"]

0 comments on commit 4cf0787

Please sign in to comment.