Skip to content

Commit

Permalink
Merge pull request #46 from mmurooka/catkin-test-fix-bool
Browse files Browse the repository at this point in the history
  • Loading branch information
gergondet authored Jan 3, 2024
2 parents 8256f26 + 6ba76f9 commit 05689da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-catkin-project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ runs:
catkin build ${{ inputs.build-packages }} --limit-status-rate 0.1 ${{ inputs.catkin-build-args }} --cmake-args -DCMAKE_BUILD_TYPE=${{ inputs.build-type }} ${{ inputs.cmake-args }}
shell: bash
- name: Run test
if: ${{ !inputs.skip-test }}
if: ${{ inputs.skip-test == false || inputs.skip-test == 'false' }}
run: |
set -e
set -x
Expand Down

0 comments on commit 05689da

Please sign in to comment.