Skip to content

Update pyproject.toml #44

Update pyproject.toml

Update pyproject.toml #44

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: |
make fmt
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: |
make test
- name: Archive coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: .coverage-reports/coverage.xml
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v4.2.1
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}