-
-
Notifications
You must be signed in to change notification settings - Fork 12
139 lines (125 loc) · 3.5 KB
/
python-ci.yml
File metadata and controls
139 lines (125 loc) · 3.5 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: Python CI
on:
push:
branches: [develop]
paths:
- ".github/actions/python/**"
- ".github/workflows/python-ci.yml"
- "scripts/emoji_generator/**"
pull_request:
branches: [develop]
paths:
- ".github/actions/python/**"
- ".github/workflows/python-ci.yml"
- "scripts/emoji_generator/**"
env:
PYTHONUNBUFFERED: 1
WORKSPACE: ./scripts/emoji_generator
jobs:
dependency-review:
name: Dependency Review
if: >-
github.event_name == 'pull_request' ||
github.event_name == 'pull_request_target' ||
github.event_name == 'merge_group'
permissions:
contents: read
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.WORKSPACE }}
steps:
- uses: actions/checkout@v6
- name: "Dependency Review"
uses: actions/dependency-review-action@v5.0.0
with:
comment-summary-in-pr: on-failure
fail-on-severity: moderate
analyze:
name: CodeQL Analysis
needs: dependency-review
if: ${{ always() && needs.dependency-review.result != 'failure' }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.WORKSPACE }}
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
lint-check:
name: Lint Check
needs: dependency-review
if: ${{ always() && needs.dependency-review.result != 'failure' }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.WORKSPACE }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Common setup
uses: ./.github/actions/python
with:
workspace: ${{ env.WORKSPACE }}
- name: Run linter (Ruff)
run: poetry run ruff check .
format-check:
name: Format Check
needs: dependency-review
if: ${{ always() && needs.dependency-review.result != 'failure' }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.WORKSPACE }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Common setup
uses: ./.github/actions/python
with:
workspace: ${{ env.WORKSPACE }}
- name: Check code formatting (Ruff)
run: poetry run ruff format --check .
type-check:
name: Type Check
needs: dependency-review
if: ${{ always() && needs.dependency-review.result != 'failure' }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.WORKSPACE }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Common setup
uses: ./.github/actions/python
with:
workspace: ${{ env.WORKSPACE }}
- name: Run type checker (mypy)
run: poetry run mypy .
test:
name: Python Tests
needs: [analyze, lint-check, format-check, type-check]
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.WORKSPACE }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Common setup
uses: ./.github/actions/python
with:
workspace: ${{ env.WORKSPACE }}
- name: Run tests
run: poetry run pytest -v