mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 19:16:54 +08:00
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
name: 'Setup Julia environment'
|
|
description: 'Setup a Julia environment and add it to the PATH'
|
|
author: 'Sascha Mann'
|
|
inputs:
|
|
version:
|
|
description: 'The Julia version to download (if necessary) and use. Example: 1.0.4'
|
|
default: '1'
|
|
include-all-prereleases:
|
|
description: 'Include prereleases when matching the Julia version to available versions.'
|
|
required: false
|
|
default: 'false'
|
|
arch:
|
|
description: 'Architecture of the Julia binaries. Defaults to the architecture of the runner executing the job.'
|
|
required: false
|
|
default: '${{ runner.arch }}'
|
|
show-versioninfo:
|
|
description: 'Display InteractiveUtils.versioninfo() after installing'
|
|
required: false
|
|
default: 'false'
|
|
outputs:
|
|
julia-version:
|
|
description: 'The installed Julia version. May vary from the version input if a version range was given as input.'
|
|
julia-bindir:
|
|
description: 'Path to the directory containing the Julia executable. Equivalent to JULIA_BINDIR: https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_BINDIR'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|
|
branding:
|
|
icon: 'download'
|
|
color: 'green'
|