Merge pull request #2 from tomislav-varga/new-feature #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Hello World | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| say-hello: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Hello World | |
| run: echo "Hello World!" | |
| - name: Now it is | |
| run: date | |
| - name: Directory content | |
| run: ls -l |