-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (41 loc) · 1.13 KB
/
check.yml
File metadata and controls
51 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Check and Test Python Project
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 1 # latest only
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: |
pyproject.toml
uv.lock
- name: Run Ruff
run: |
uv run --frozen ruff format --check
uv run --frozen ruff check --no-fix --output-format=github
- name: Run pytest unittests
run: |
uv run --frozen pytest \
--cov \
--cov-report=term-missing \
--cov-report=xml:coverage.xml
- uses: pre-commit/action@v3.0.1
# for SonarQube coverage report
# - uses: SonarSource/sonarqube-scan-action@v7
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}