Skip to content
Merged
Changes from 11 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
2 changes: 1 addition & 1 deletion .github/workflows/amd_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,4 @@ jobs:
source "${{ runner.tool_cache }}/${{ env.VENV_DIR }}/bin/activate"
cd testing/python/amd
unset PYTHONPATH
python -m pytest -v test_tilelang_test_amd.py
python -m pytest -v test_tilelang_test_amd.py
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Add trailing newline to satisfy YAML linting

YAMLlint flags “no new line character at the end of file”. Add a newline after Line 121 to fix CI lint failures.

🧰 Tools
🪛 YAMLlint (1.37.1)

[error] 121-121: no new line character at the end of file

(new-line-at-end-of-file)

🤖 Prompt for AI Agents
In .github/workflows/amd_ci.yml at line 121, the file is missing a trailing
newline which causes YAML linting to fail; add a single newline character after
the last line (after "python -m pytest -v test_tilelang_test_amd.py") so the
file ends with a newline, then save and commit the change.

Loading