修复:添加 checkout 步骤
Some checks are pending
Local Test / test (push) Waiting to run

This commit is contained in:
ben
2026-02-02 02:17:38 +00:00
parent 4eaa498ed6
commit 218da6d855

View File

@@ -6,11 +6,15 @@ jobs:
test:
runs-on: ubuntu:host
steps:
- uses: actions/checkout@v3
- run: |
echo "=== 开始任务 ==="
date
echo "下载 README..."
curl -s https://gitea.tailnet-68f9.ts.net/ben/modelscope/raw/branch/main/README.md -o /tmp/readme.md
echo "当前目录:"
pwd
echo "目录内容:"
ls -la
echo "README 内容:"
head -5 /tmp/readme.md
cat README.md | head -10
echo "=== 任务完成 ==="