commit 75f722ffbee9ef65c02a16a1e79fdd5d336a3a71 Author: 寻觅 Date: Wed Nov 20 11:40:08 2024 +0800 推送 diff --git a/.github/workflows/Git工作流测试.yml b/.github/workflows/Git工作流测试.yml new file mode 100644 index 0000000..78ea955 --- /dev/null +++ b/.github/workflows/Git工作流测试.yml @@ -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 }}." + diff --git a/README.md b/README.md new file mode 100644 index 0000000..5029f9f --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# 工作流测试