This commit is contained in:
2024-11-20 11:40:08 +08:00
commit 75f722ffbe
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
name: Git 工作流测试
run-name: ${{ github.actor }} 测试工作流 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 工作流事件由 ${{ github.event_name }} 触发"
- run: echo "🐧 该任务运行在GitHub托管的 ${{ runner.os }} 服务器上!"
- run: echo "🔎 分支的名称是: ${{ github.ref }}; 储存仓库是: ${{ github.repository }}"
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 此作业的状态为 ${{ job.status }}."

1
README.md Normal file
View File

@ -0,0 +1 @@
# 工作流测试