推送
This commit is contained in:
19
.github/workflows/Git工作流测试.yml
vendored
Normal file
19
.github/workflows/Git工作流测试.yml
vendored
Normal 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 }}."
|
||||
|
Reference in New Issue
Block a user