Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/hello.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Hello java program
on:
push:
branches:
- chandrams-patch-5

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run Hello
run: |
javac Hello.java
java Hello


5 changes: 3 additions & 2 deletions Hello.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
class Hello {
public static void main (string[] args){
System.out.println("Hello from chandra");
public static void main (String[] args){
System.out.println("Hello from Autotune!");
System.out.println("hi from bhanvi");
}

}