Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run a Jupyter Notebook through Github Actions

I have a repository on Github that contains a notebook I'd like to run automatically. I've looked at this action, which seems useful, but I'm not quite sure how my actions.yaml file should look, as I'm pretty new to Github actions.

like image 715
Etan Ossip Avatar asked Sep 07 '25 04:09

Etan Ossip


1 Answers

Example 1 and Example 2 sections of this Github action's author is an example of what your Github action workflow file should look like.

Since you're the user of this Github action, your repository will contain your workflow file under your .github/workflows directory. Your workflow action file can be named anything, as long as it's sitting in this location; i.e it doesn't have to be named actions.yaml

For another example, you can review the workflow file at my repository, again under .github/workflows. This makes use of another action (and it's currently all commented out as I don't want to run it right now), but you will get the idea and it can help you generalize and understand what goes into a workflow file.

like image 81
aslisabanci Avatar answered Sep 09 '25 18:09

aslisabanci