Files
ci-test/.gitea/workflows/test.yml
T
openclaw 497c14033d
测试 CI / test (push) Failing after 1m32s
chore: add test CI workflow
2026-05-27 05:16:03 +08:00

24 lines
615 B
YAML

name: 测试 CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 拉取代码
uses: https://git.catscavern.com/actions/checkout@v4
- name: 看看服务器
run: |
echo "🐧 系统信息"
uname -a
echo "💻 CPU: $(nproc) 🧠 内存: $(free -h | grep Mem | awk '{print $2}')"
echo "💾 磁盘: $(df -h / | tail -1 | awk '{print $2}')"
- name: 保存信息
uses: https://git.catscavern.com/actions/upload-artifact@v3
if: always()
with:
name: sysinfo
path: /proc/cpuinfo