Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. name: CI
  2.  
  3. on: [push]
  4.  
  5. jobs:
  6. build:
  7. runs-on: ubuntu-latest
  8.  
  9. steps:
  10. - uses: actions/checkout@v1
  11. - name: Run a one-line script
  12. run: pwd
  13. - name: Run a multi-line script
  14. run: |
  15. ls
  16. git status
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement