Skip to content

Commit 6c6df29

Browse files
committed
数値チェックを入れる
1 parent dfb4621 commit 6c6df29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-debug.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ jobs:
3737
runs-on: ${{ matrix.platform.runs-on }}
3838
steps:
3939
- name: buildType=${{ inputs.buildTYpe }} loopCount=${{ inputs.loopCount }}
40-
run: echo 'buildType=${{ inputs.buildTYpe }} loopCount=${{ inputs.loopCount }}'
40+
# 1 <= loopCount <= 100
41+
run: test 1 -le ${{ inputs.loopCount }} -a ${{ inputs.loopCount }} -le 100
4142
- name: Disk Cleanup
4243
run: |
4344
set -x

0 commit comments

Comments
 (0)