Skip to content

Instantly share code, notes, and snippets.

View avinashjaingit's full-sized avatar

avinashjaingit

  • HSBC Software Development India Pvt Ltd
  • Pune
View GitHub Profile
@avinashjaingit
avinashjaingit / 01-hello-world.yml
Created January 25, 2024 11:16 — forked from weibeld/01-hello-world.yml
GitHub Actions example workflow 1 — Hello World!
name: hello-world
on: push
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "Hello World!"