-
Notifications
You must be signed in to change notification settings - Fork 86
58 lines (45 loc) · 1.15 KB
/
Copy pathquality.yml
File metadata and controls
58 lines (45 loc) · 1.15 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
name: Quality Gate
on:
pull_request:
push:
branches:
- main
jobs:
lint-type-test:
name: Lint, Type, Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff lint
run: ruff check .
- name: Ruff format check
run: ruff format --check .
- name: Mypy
run: mypy ductor_bot
- name: Pytest
run: pytest -q
security:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
pip install bandit pip-audit
- name: Bandit (report)
continue-on-error: true
run: bandit -q -r ductor_bot -x ductor_bot/_home_defaults
- name: pip-audit
run: pip-audit