forked from cohere-ai/cohere-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70e88d3
commit 804e5c2
Showing
2 changed files
with
31 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Typecheck | ||
|
||
on: | ||
push: | ||
branches: [eugene/test-workflow] | ||
pull_request: {} | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: pipx install poetry | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
cache: 'poetry' | ||
- run: poetry install | ||
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH | ||
- 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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters