Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eugene/test workflow #1

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2392034
Test workflow
EugeneLightsOn Sep 12, 2024
c8dc8bd
Test workflow
EugeneLightsOn Sep 12, 2024
03889f6
Test workflow
EugeneLightsOn Sep 12, 2024
bd94948
Test workflow
EugeneLightsOn Sep 12, 2024
1ca558f
Test workflow
EugeneLightsOn Sep 12, 2024
507f96d
Test workflow
EugeneLightsOn Sep 12, 2024
2fd9711
Test workflow
EugeneLightsOn Sep 12, 2024
fa13b8b
Test workflow
EugeneLightsOn Sep 12, 2024
c628f8a
Test workflow
EugeneLightsOn Sep 12, 2024
70f1e40
Test workflow
EugeneLightsOn Sep 12, 2024
2fc7bc6
Test workflow
EugeneLightsOn Sep 12, 2024
548736c
Test workflow
EugeneLightsOn Sep 12, 2024
09df287
Test workflow
EugeneLightsOn Sep 12, 2024
0b201d0
Test workflow
EugeneLightsOn Sep 12, 2024
50b90e7
Test workflow
EugeneLightsOn Sep 12, 2024
255c7a1
Test workflow
EugeneLightsOn Sep 12, 2024
e99017a
Test workflow
EugeneLightsOn Sep 12, 2024
a60d483
Test workflow
EugeneLightsOn Sep 12, 2024
6d32516
Test workflow
EugeneLightsOn Sep 12, 2024
e9a9d41
Test workflow
EugeneLightsOn Sep 12, 2024
f489c5d
Test workflow
EugeneLightsOn Sep 12, 2024
06bfffa
Test workflow
EugeneLightsOn Sep 12, 2024
38223a1
Test workflow
EugeneLightsOn Sep 12, 2024
fe057d3
Test workflow
EugeneLightsOn Sep 12, 2024
8f2424a
Test workflow
EugeneLightsOn Sep 12, 2024
83d7a76
Test workflow
EugeneLightsOn Sep 12, 2024
8361ecd
Test workflow
EugeneLightsOn Sep 12, 2024
e711e8f
Test workflow
EugeneLightsOn Sep 12, 2024
23c5335
Test workflow
EugeneLightsOn Sep 12, 2024
70e88d3
Test workflow
EugeneLightsOn Sep 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/python-typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@ jobs:
- uses: jakebailey/pyright-action@v2
with:
version: 1.1.311
- name: Get new files added in the PR
id: get_new_files
run: |
git fetch origin main
NEW_PY_FILES=$(git diff --name-only --diff-filter=A origin/main HEAD | grep '\.py$' | tr '\n' ' ')
echo "New files: $NEW_PY_FILES"
echo "new_py_files=$NEW_PY_FILES" >> $GITHUB_OUTPUT
- name: Typecheck new files
uses: jakebailey/pyright-action@v2
with:
version: 1.1.311
extra-args: ${{ steps.get_new_files.outputs.new_py_files }}
Loading
Loading