Skip to content

Commit

Permalink
数値チェックを入れる
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Nov 4, 2024
1 parent dfb4621 commit 6c6df29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: buildType=${{ inputs.buildTYpe }} loopCount=${{ inputs.loopCount }}
run: echo 'buildType=${{ inputs.buildTYpe }} loopCount=${{ inputs.loopCount }}'
# 1 <= loopCount <= 100
run: test 1 -le ${{ inputs.loopCount }} -a ${{ inputs.loopCount }} -le 100
- name: Disk Cleanup
run: |
set -x
Expand Down

0 comments on commit 6c6df29

Please # to comment.