A simple Hello World app in Kotlin, built using an Actionforge graph as the CI/CD pipeline.
kotlinc Main.kt -include-runtime -d hello-world.jar
java -jar hello-world.jarThe build pipeline is defined as an Actionforge graph in .github/workflows/graphs/build.act:
checkout -> run (kotlinc Main.kt -include-runtime -d build/hello-world.jar) -> upload-artifact (build/)
It runs on every push to main, on pull requests, and on manual dispatch.