Skip to content

fix(frontend): SSE refresh + export blob compatibility (PR #109 review) #221

fix(frontend): SSE refresh + export blob compatibility (PR #109 review)

fix(frontend): SSE refresh + export blob compatibility (PR #109 review) #221

Workflow file for this run

name: SonarCloud Scan
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install coverage
- name: Run tests with coverage
run: |
coverage run -m unittest discover -s tests -v
coverage xml
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@v5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}