Skip to content

enable sonar debug logging #17

enable sonar debug logging

enable sonar debug logging #17

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!"