Merge pull request #7 from daniellehopedev/github-workflow #3
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: My Github Actions Workflow | |
| on: [push] | |
| jobs: | |
| testing_github: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Hello | |
| run: echo "Hello, Github Actions" | |
| - name: Display repo name | |
| run: echo "this workflow is running in ${{ github.repository }}" |