Skip to content

feat: add safety net for emitting metrics #29

feat: add safety net for emitting metrics

feat: add safety net for emitting metrics #29

Workflow file for this run

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'