25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
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.