A simple Hello World app in C#, built using an Actionforge graph as the CI/CD pipeline.
dotnet runThe build pipeline is defined as an Actionforge graph in .github/workflows/graphs/build.act:
checkout -> run (dotnet publish -c Release -o build/) -> upload-artifact (build/)
It runs on every push to main, on pull requests, and on manual dispatch.