您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
307 B

  1. name: CI
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v1
  8. - name: Run a one-line script
  9. run: echo Hello, world!
  10. - name: Run a multi-line script
  11. run: |
  12. echo Add other actions to build,
  13. echo test, and deploy your project.