Julia Shell in Github Actions

1 · Wen Wei Tseng · Sept. 26, 2021, 4:06 p.m.
Using julia shell to run scripts in the GH action workflow files is much cleaner than julia -e 'script content'. For example, 1 2 3 4 5 - name: Install extra dependency on main branch shell: julia --color=yes --project=. {0} run: | using Pkg Pkg.add(PackageSpec(; name="AnExtraPackage", rev="main")) ...