Skip to content

fix README.md

fix README.md #38

Workflow file for this run

name: my_build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install uv
make install
- name: Run linter and pytest
run: |
make check
- name: Run test coverage
run: |
make test-coverage
- name: SonarQubeScan
uses: SonarSource/sonarqube-scan-action@v5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.projectKey=A-leks-andr_python-project-50
-Dsonar.organization=a-leks-andr
-Dsonar.python.coverage.reportPaths=coverage.xml
-Dsonar.coverage.exclusions=tests/**
-Dsonar.exclusions=tests/**