Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cce629e
Add Ruff linting workflow
isaacbmiller Mar 3, 2024
b24abbc
Update GitHub Actions workflows
isaacbmiller Mar 3, 2024
b55b67f
Make ruff apply but not fail
isaacbmiller Mar 3, 2024
a09909b
Style fixes by Ruff
isaacbmiller Mar 3, 2024
70151e7
Combine Workflows
isaacbmiller Mar 3, 2024
9f23064
Merge branch 'ruff-formatting' of github.com:stanfordnlp/dspy into ru…
isaacbmiller Mar 3, 2024
2dbb09d
Add caching
isaacbmiller Mar 3, 2024
471341b
Add import related rules
isaacbmiller Mar 3, 2024
ab7ebdb
Automatic Style fixes
isaacbmiller Mar 3, 2024
1847fd3
Try and fix caching
isaacbmiller Mar 3, 2024
fcdf8cb
Merge branch 'ruff-formatting' of github.com:stanfordnlp/dspy into ru…
isaacbmiller Mar 3, 2024
6b9dbf9
Fix import
isaacbmiller Mar 3, 2024
f2353c8
Use natve python dep caching
isaacbmiller Mar 3, 2024
20e21db
Update actions/checkout to v4
isaacbmiller Mar 3, 2024
3aed4d6
Use autofix in tests
isaacbmiller Mar 3, 2024
3d1a808
Try to cache "install poetry"
isaacbmiller Mar 3, 2024
e3ddb1d
Empty-Commit to test caching
isaacbmiller Mar 3, 2024
382570d
Remove workflow deps
isaacbmiller Mar 3, 2024
a50b993
Rename action
isaacbmiller Mar 4, 2024
423f121
Update workflow name
isaacbmiller Mar 4, 2024
59776dd
Merge branch 'main' into ruff-formatting
isaacbmiller Mar 4, 2024
98b982c
Fix Docker stop command and subprocess run check
isaacbmiller Mar 4, 2024
8185b70
Fix functional imports
isaacbmiller Mar 4, 2024
71083ab
Merge branch 'main' into ruff-formatting
isaacbmiller Mar 4, 2024
2781193
Remove --no-root flag
isaacbmiller Mar 4, 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
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install dependencies
run: poetry install --no-interaction --no-root
run: poetry install --no-interaction
- name: Run lint with tests
uses: chartboost/ruff-action@v1
with:
Expand Down