Reputation:
I have a Github Actions workflow which has two jobs:
I would appreciate it if someone could point out what I did wrong.
Upvotes: 1
Views: 1216
Reputation: 5931
I took a look at your pipeline above and it seems your run-on-windows-and-mac
job is missing actions/checkout action step. This is why spark.exe
execution fails. It cannot find test.spark
file used as an argument (it is in the repo but was not checked out to the runner executing the run). Just add the actions/checkout step before executing spark.exe spark.test
and you should be fine.
Upvotes: 1