fix: bound memory usage of record queries and maintenance/upgrade sca… #735
This file contains hidden or 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: Sonar Scan and Coverage on merge to main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| sonarcloud: | |
| permissions: | |
| contents: read | |
| checks: write | |
| name: SonarCloud | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'openwallet-foundation/acapy' && github.actor != 'dependabot[bot]' | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Tests | |
| uses: ./.github/actions/run-unit-tests | |
| with: | |
| python-version: "3.13" | |
| os: "ubuntu-latest" | |
| is_pr: "false" | |
| - name: SonarCloud Scan | |
| uses: SonarSource/sonarqube-scan-action@22918119ff8e1ca75a623e15c8296b6ea4fbe28f # master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| with: | |
| args: > | |
| -Dsonar.python.coverage.reportPaths=test-reports/coverage.xml | |
| -Dsonar.coverage.exclusions=**/tests/**,**/demo/**,**/docs/**,**/docker/**,**/scripts/**,**/scenarios/** | |
| -Dsonar.cpd.exclusions=**/tests/**,**/demo/**,**/docs/**,**/docker/**,**/scripts/**,**/scenarios/** | |
| -Dsonar.sources=./ |