Merge commit '9a4316f96eeb92a06d5ceaf94387d349c5ea9537' into checkpoint/long_lived_atari_from_main_9a4316f96eeb92a06d5ceaf94387d349c5ea9537

This commit is contained in:
Amine Khaldi
2022-08-04 18:06:22 +01:00
+5 -1
View File
@@ -11,6 +11,10 @@ inputs:
description: "Install development dependencies."
required: false
default: ""
automated:
description: "Automated install, no questions."
required: false
default: "true"
command-prefix:
description: "Text to place before the command such as `arch -arm64` for non-native macOS runners."
required: false
@@ -25,7 +29,7 @@ runs:
env:
INSTALL_PYTHON_VERSION: ${{ inputs.python-version }}
run: |
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }}
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }}
- name: Run install script (Windows)
if: runner.os == 'windows'