Support specifying allow_reresolve (#107)

This commit is contained in:
Curtis Vogt
2024-04-16 11:23:23 -05:00
committed by GitHub
parent 3a055a9a24
commit 7e64b540de
3 changed files with 12 additions and 2 deletions

View File

@@ -35,6 +35,9 @@ inputs:
compiled_modules:
description: 'Whether to run tests with `compiled-modules`. For possible values, refer to https://docs.julialang.org/en/v1/manual/command-line-interface/#command-line-interface'
default: 'yes'
allow_reresolve:
description: 'Whether to allow re-resolving of package versions in the test environment. Only effective on Julia 1.9+. Options: true | false. Default value: true'
default: 'true'
runs:
using: 'composite'
@@ -70,3 +73,4 @@ runs:
FORCE_LATEST_COMPATIBLE_VERSION: ${{ inputs.force_latest_compatible_version }}
CHECK_BOUNDS: ${{ inputs.check_bounds }}
COMPILED_MODULES: ${{ inputs.compiled_modules }}
ALLOW_RERESOLVE: ${{ inputs.allow_reresolve }}