Skip to content

Commit

Permalink
Fixes GitHub coverage issue (#544)
Browse files Browse the repository at this point in the history
* Update action.yml

* Update action.yml
  • Loading branch information
ahmed-irfan authored Dec 17, 2024
1 parent 772ad59 commit 1cb3967
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,12 @@ runs:
# This is needed for yices2 to find libpoly.so.0. /usr/local/lib not searched by default?
export LD_LIBRARY_PATH=/usr/local/lib/:${LD_LIBRARY_PATH}
make MODE=${{ inputs.mode }} check
make MODE=${{ inputs.mode }} check-api
make MODE=${{ inputs.mode }} test
- name: Test Yices API
shell: bash
if: inputs.mode != 'gcov'
run: |
# This is needed for yices2 to find libpoly.so.0. /usr/local/lib not searched by default?
export LD_LIBRARY_PATH=/usr/local/lib/:${LD_LIBRARY_PATH}
make MODE=${{ inputs.mode }} check-api

0 comments on commit 1cb3967

Please sign in to comment.