Files
setup-julia/action.yml
Sascha Mann 7961e4e3f2 Add prototype action using exec and curl
* Downloads a fixed version Julia binary using curl
* Adds it to PATH
* Runs `julia --version` to test the installation
2019-08-13 12:11:39 +02:00

11 lines
321 B
YAML

name: 'Setup Julia environment'
description: 'Setup a Julia environment and add it to the PATH'
author: 'Sascha Mann <git@mail.saschamann.eu>'
inputs:
version:
description: 'The Julia version to download (if necessary) and use. Example: 1.0'
default: '1.0'
runs:
using: 'node12'
main: 'lib/setup-julia.js'