Created
April 19, 2024 15:35
-
-
Save LumiSage/f77b659f5eb65b84ad287e2314930c84 to your computer and use it in GitHub Desktop.
GitHub Actions workflow example : Run Hello World!
This file contains 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: | |
hello-world-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: my-step | |
run: echo "Hello World!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment