chore: update CI workflows and docs for monorepo structure

* chore: update CI workflows and docs for monorepo structure

* fix: actions syntax
This commit is contained in:
Greyson LaLonde
2025-09-28 00:28:49 -04:00
committed by GitHub
parent 289b90f00a
commit 68dce92003
6 changed files with 807 additions and 11 deletions

View File

@@ -49,13 +49,13 @@ jobs:
echo "$changed_files" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
# - name: Run Ruff on Changed Files
# if: ${{ steps.changed-files.outputs.files != '' }}
# run: |
# echo "${{ steps.changed-files.outputs.files }}" \
# | tr ' ' '\n' \
# | grep -v 'src/crewai/cli/templates/' \
# | xargs -I{} uv run ruff check "{}"
- name: Run Ruff on Changed Files
if: ${{ steps.changed-files.outputs.files != '' }}
run: |
echo "${{ steps.changed-files.outputs.files }}" \
| tr ' ' '\n' \
| grep -v 'src/crewai/cli/templates/' \
| xargs -I{} uv run ruff check "{}"
- name: Save uv caches
if: steps.cache-restore.outputs.cache-hit != 'true'