Skip to content

Commit

Permalink
add basic workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HunorTotBagi committed Aug 5, 2024
1 parent bcdf9e9 commit 6a16c77
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/hello-world.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Hello world workflow

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: hello world
run: echo "Hello world"
shell: bash

goodbye:
runs-on: ubuntu-latest
steps:
- name: goodbye world
run: echo "Goodbye world"
shell: bash

0 comments on commit 6a16c77

Please sign in to comment.