enable sonar debug logging #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check, Build and Test | |
on: | |
pull_request: | |
push: | |
# # Debug setup: | |
# OGDF_UTILS_PREQUEL: "set -x" | |
# CCACHE_DEBUG: 1 | |
# CCACHE_DEBUGDIR: ${{ github.workspace }}/ccache-debug | |
# VERBOSE: 1 | |
jobs: | |
dummy: | |
name: "Dummy" | |
runs-on: ubuntu-latest | |
if: github.event.repository.full_name != 'ogdf/ogdf' || github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != 'ogdf/ogdf' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Store static analysis results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: static-analysis | |
path: static-analysis/ | |
- name: Store coverage data | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: coverage | |
path: coverage/ | |
summary: | |
needs: [ dummy ] | |
name: "All tests succeeded" | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Everything worked!" |