Files
julia-buildpkg/action.yml
2020-08-07 23:36:23 +02:00

10 lines
284 B
YAML

name: 'Run Pkg.build'
description: 'Run the build step in a Julia package'
author: 'David Anthoff'
runs:
using: 'composite'
steps:
- run: julia --color=yes --project -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end'
shell: bash