-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
experiment: add GitHub Actions workflow to test Julia notebooks
- Loading branch information
1 parent
6b6ac0c
commit 10f0b47
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Test Julia Notebooks | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
run-notebooks: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Julia | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: '1.9' # You can specify the Julia version here | ||
|
||
- name: Install dependencies | ||
run: | | ||
julia -e 'using Pkg; Pkg.activate(".")' # Installs the Julia dependencies from Project.toml | ||
- name: Run Jupyter Notebooks | ||
uses: yaananth/run-notebook@v2 | ||
with: | ||
notebook: 'notebooks/preprocessing-workflow/tiling.ipynb' |