feat: add safety net for emitting metrics #29
Workflow file for this run
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: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| tags: [v*] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| ci: | |
| name: CI Checks (Code Quality, Static Analysis and Security Scan) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Code Quality Checks | |
| run: make check | |
| - name: Static Analysis and Security Scan | |
| uses: minvws/action-sonarqube@v1 | |
| with: | |
| sonar-token: ${{ secrets.SONAR_TOKEN }} | |
| allow-run-on-dependabot: 'true' |