Update debugging step in CI workflow to list all files with human-readable sizes
All checks were successful
CI / ci (push) Successful in 6s
All checks were successful
CI / ci (push) Successful in 6s
This commit is contained in:
parent
1d49e9c3f9
commit
dd2805b7f0
4 changed files with 12 additions and 39 deletions
|
|
@ -15,6 +15,12 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Print the local dir and list files for debugging
|
||||
run: |
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Files in current directory:"
|
||||
ls -ahl
|
||||
|
||||
- name: Install dependencies
|
||||
run: uv sync --all-extras --dev -U
|
||||
|
||||
|
|
@ -24,8 +30,5 @@ jobs:
|
|||
- name: Check formatting
|
||||
run: ruff format --check --verbose
|
||||
|
||||
- name: Lint Dockerfile (build only)
|
||||
run: docker build --check .
|
||||
|
||||
- name: Run tests
|
||||
run: uv run pytest
|
||||
Loading…
Add table
Add a link
Reference in a new issue