Skip to content
Open
Changes from all commits
Commits
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
16 changes: 16 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,19 @@ jobs:
echo "Checking $f..."
argo lint --offline "$f" || echo "WARNING: $f needs server-side template resolution or has offline lint issues"
done

- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.13'

- name: Validate Python syntax
run: |
echo "Checking Python syntax..."
find tests/ -name '*.py' -print0 | xargs -0 python -m py_compile

- name: Check pytest collection
run: |
echo "Checking pytest imports and collection..."
python -m pip install pytest -q
python -m pytest tests/ --collect-only -q 2>&1 | tail -5
Loading