This message was deleted.
# community-support
s
This message was deleted.
r
You've got
workingDir 'run'
set for the
test
task in
build.gradle
and the error is that
/home/runner/work/multiconnect/multiconnect/run
does not exist - is it possible you created it manually locally?
I'd guess just adding a
- run: mkdir run
to your steps before the gradle one will fix it.
Unless the error means that it can't find the
java
file...
c
the java is likely there (that’s the standard location for GitHub Actions installed JVMs) - the working directory is set to
…/run
which does not exist.
j
The missing run directory was the issue, thanks! I used to have a
run/.gitkeep
file but somewhere along the line it must have got deleted, I re-added it and it works now.
👍 2
👌 1