Github Action Runner With Kotlin Gradle Fail
I am trying to use a github action runner to run a test in my Kotlin project.
It's part of a gradle springboot project (a simple API microservice).
That said, the test is just a standalone 'hello world' type unit test which lives in it's own module and of course has no problems when run locally (I'm using a custom gradle task to run it)!
Here is my workflow yaml file -
name: Kotlin CI
on: [push]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
-...