-
-
Save developer-guy/0affe74dc38b3231b9b216f8d08d44d4 to your computer and use it in GitHub Desktop.
GitHub Actions example workflow 1 — Hello World!
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 | |
jobs: | |
my-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: my-step | |
run: echo "Hello World!" |
helpful link down below:
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Let’s go through the definition of this workflow: