Skip to content

Commit b8c82f5

Browse files
committed
action-dash
1 parent 27b3cf5 commit b8c82f5

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/python_checks.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
The list of SpiNNaker dependencies to check out. Space-separated
2525
required: true
2626
type: string
27-
install_module:
27+
install-module:
2828
description: >
2929
Flag to say if the current model should be installed should be installed
3030
Excepted values are true of false
@@ -34,7 +34,7 @@ on:
3434
pip_installs:
3535
description: >
3636
Extra things to pip install when package not installed
37-
Mainly used when install_module is false
37+
Mainly used when install-module is false
3838
required: false
3939
type: string
4040
default: ''
@@ -151,11 +151,11 @@ jobs:
151151

152152
steps:
153153
- name: Prepare
154-
uses: SpiNNakerManchester/SupportScripts/actions/prepare@main
154+
uses: SpiNNakerManchester/SupportScripts/actions/prepare@action-dash
155155
with:
156156
python-version: ${{ matrix.python-version }}
157157
install_dependencies: ${{ inputs.dependencies }}
158-
install_module: ${{ inputs.install_module }}
158+
install-module: ${{ inputs.install-module }}
159159
install_check_tools: true
160160
ubuntu_packages: ${{ inputs.ubuntu_packages }}
161161
cfg_file: ${{ inputs.cfg_file }}
@@ -238,11 +238,11 @@ jobs:
238238
steps:
239239
- name: Prepare
240240
if: ${{ matrix.python-version != env.PRERELEASE || inputs.check_prereleases == 'true' }}
241-
uses: SpiNNakerManchester/SupportScripts/actions/prepare@main
241+
uses: SpiNNakerManchester/SupportScripts/actions/prepare@action-dash
242242
with:
243243
python-version: ${{ matrix.python-version }}
244244
install_dependencies: ${{ inputs.dependencies }}
245-
install_module: ${{ inputs.install_module }}
245+
install-module: ${{ inputs.install-module }}
246246
install_check_tools: true
247247
ubuntu_packages: ${{ inputs.ubuntu_packages }}
248248
cfg_file: ${{ inputs.cfg_file }}
@@ -306,11 +306,11 @@ jobs:
306306

307307
steps:
308308
- name: Prepare
309-
uses: SpiNNakerManchester/SupportScripts/actions/prepare@main
309+
uses: SpiNNakerManchester/SupportScripts/actions/prepare@action-dash
310310
with:
311311
python-version: ${{ matrix.python-version }}
312312
install_dependencies: ${{ inputs.dependencies }}
313-
install_module: ${{ inputs.install_module }}
313+
install-module: ${{ inputs.install-module }}
314314
install_check_tools: false
315315
# inputs.ubuntu_packages NOT installed!
316316
cfg_file: ${{ inputs.cfg_file }}

actions/prepare/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ inputs:
2626
Space-separated
2727
required: false
2828
default: ''
29-
install_module:
29+
install-module:
3030
description: >
3131
Flag to say if the current model should be installed should be installed
3232
Excepted values are true of false
@@ -50,7 +50,7 @@ inputs:
5050
pip_installs:
5151
description: >
5252
Extra things to pip install when package not installed
53-
Mainly used when install_module is false
53+
Mainly used when install-module is false
5454
required: false
5555
default: ''
5656
cfg_file:
@@ -107,7 +107,7 @@ runs:
107107
packages: ${{ inputs.ubuntu_packages }}
108108

109109
- name: Run Install
110-
if: ${{ inputs.install_module == 'true' }}
110+
if: ${{ inputs.install-module == 'true' }}
111111
uses: SpiNNakerManchester/SupportScripts/actions/run-install@main
112112

113113
- name: Setup PyNN

0 commit comments

Comments
 (0)