14 lines
325 B
YAML
14 lines
325 B
YAML
name: Local Test
|
|
|
|
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu:host
|
|
steps:
|
|
- run: |
|
|
echo "=== 下载 README ==="
|
|
curl -s https://gitea.tailnet-68f9.ts.net/ben/modelscope/raw/branch/main/README.md -o /tmp/readme.md
|
|
cat /tmp/readme.md
|
|
echo "=== 完成 ==="
|