-
-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (57 loc) · 1.77 KB
/
Copy pathlint.yml
File metadata and controls
74 lines (57 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: "Lint"
on:
push:
paths:
- "**.py" # Run if pushed commits include a change to a Python (.py) file.
- ".github/workflows/lint.yml" # Run if pushed commits include a change to a github actions workflow file.
- "pyproject.toml" # Run if project configuration file changes.
pull_request:
paths:
- "**.py" # Run if pushed commits include a change to a Python (.py) file.
- ".github/workflows/lint.yml" # Run if pushed commits include a change to a github actions workflow file.
- "pyproject.toml" # Run if project configuration file changes.
workflow_dispatch:
jobs:
ruff_check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Ruff Check
uses: astral-sh/ruff-action@v4.1.0
with:
args: check --output-format=github
- name: Ruff Format
uses: astral-sh/ruff-action@v4.1.0
with:
args: format --check --diff
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.3.2
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync
- name: Run mypy
run: uv run mypy
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.3.2
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest