-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
3 changed files
with
73 additions
and
3 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 |
---|---|---|
@@ -1,8 +1,28 @@ | ||
name: Ruff | ||
on: [ push, pull_request ] | ||
name: Lint | ||
on: | ||
push: | ||
pull_request: | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
ruff: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: chartboost/ruff-action@v1 | ||
mypy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- name: Install mypy | ||
run: pip install mypy | ||
- name: Install shelloracle dependencies | ||
run: pip install -r requirements.txt | ||
- name: Run mypy | ||
run: mypy src/ |
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
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,48 @@ | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile pyproject.toml -o requirements.txt | ||
annotated-types==0.6.0 | ||
# via pydantic | ||
anyio==4.3.0 | ||
# via | ||
# httpx | ||
# openai | ||
certifi==2024.2.2 | ||
# via | ||
# httpcore | ||
# httpx | ||
distro==1.9.0 | ||
# via openai | ||
h11==0.14.0 | ||
# via httpcore | ||
httpcore==1.0.5 | ||
# via httpx | ||
httpx==0.27.0 | ||
# via openai | ||
idna==3.7 | ||
# via | ||
# anyio | ||
# httpx | ||
openai==1.30.1 | ||
prompt-toolkit==3.0.43 | ||
pydantic==2.7.1 | ||
# via openai | ||
pydantic-core==2.18.2 | ||
# via pydantic | ||
sniffio==1.3.1 | ||
# via | ||
# anyio | ||
# httpx | ||
# openai | ||
termcolor==2.3.0 | ||
# via yaspin | ||
tomlkit==0.12.5 | ||
tqdm==4.66.4 | ||
# via openai | ||
typing-extensions==4.11.0 | ||
# via | ||
# openai | ||
# pydantic | ||
# pydantic-core | ||
wcwidth==0.2.13 | ||
# via prompt-toolkit | ||
yaspin==3.0.2 |