I am trying to run a julia script in github actions. Currently my yml file looks like this:
name: hello-world
'on': push
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1.10'
- run: julia '/nicknish2/PinkSnow/data/manual_data_loader.jl'
Upon committing the changes, I get an error that says:
ERROR: SystemError: opening file "/nicknish2/PinkSnow/data/manual_data_loader.jl": No such file or directory
I adapted my yml script from the basic one given here. The manual_data_loader.jl
reads in some data from a website and saves it to folder in the repository.
Also, I am still quite new to Github. Is what I am trying to do possible with julia? I have found similar tutorials for R and python, but not julia. I apologize if I am just missing something. Thank you for your help in advance!
I adapted my yml script from the basic one given here. I have tried changing the path of the file to ../../data/manual_data_loader.jl
with no luck. My yaml file is in .github/workflows
.
The manual_data_loader.jl
reads in some data from a website and saves it to folder in the repository.