Compare commits

...

1 Commits
v1.1 ... v1.2.0

Author SHA1 Message Date
Curtis Vogt
f995fa4149 Support setting the Julia project (#15) 2021-07-08 13:01:30 +02:00

View File

@@ -6,6 +6,11 @@ branding:
icon: 'box'
color: 'gray-dark'
inputs:
project:
description: 'Value passed to the --project flag. The default value is the repository root: "@."'
default: '@.'
runs:
using: 'composite'
steps:
@@ -26,5 +31,5 @@ runs:
# packages via `Pkg.test`.
JULIA_PKG_SERVER: ""
- run: julia --color=yes --project -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end'
- run: julia --color=yes --project=${{ inputs.project }} -e 'using Pkg; if VERSION >= v"1.1.0-rc1"; Pkg.build(verbose=true); else Pkg.build(); end'
shell: bash