├── .github ├── dependabot.yml └── workflows │ └── test_workflow.yml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── module_loader.lua └── tests ├── README.md ├── game_of_life ├── dependencies-1-1.rockspec └── main.lua └── hello_world └── main.lua /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/.github/workflows/test_workflow.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/action.yml -------------------------------------------------------------------------------- /module_loader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/module_loader.lua -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/game_of_life/dependencies-1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/tests/game_of_life/dependencies-1-1.rockspec -------------------------------------------------------------------------------- /tests/game_of_life/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/tests/game_of_life/main.lua -------------------------------------------------------------------------------- /tests/hello_world/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhartland/love-build/HEAD/tests/hello_world/main.lua --------------------------------------------------------------------------------