-
Notifications
You must be signed in to change notification settings - Fork 38
60 lines (48 loc) · 1.59 KB
/
check-styles.yml
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
# Check ruff format and isort applied correctly
name: Style checking
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ruff-format:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install ruff
run: |
pip3 install ruff --break-system-packages
- name: Run ruff
run: |
set +e # Do not exit shell on ruff failure
out=$(ruff format --check --diff . 2> app_stderr.txt)
exit_code=$?
err=$(<app_stderr.txt)
# Display the raw output in the step
echo "${out}"
echo "${err}"
# Display the Markdown output in the job summary
{ echo "\`\`\`diff"; echo "${out}"; echo "${err}"; echo "\`\`\`"; } >> "$GITHUB_STEP_SUMMARY"
# Exit with the exit-code returned by ruff
exit ${exit_code}
ruff-isort:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install ruff
run: |
pip3 install ruff --break-system-packages
- name: Run ruff
run: |
set +e # Do not exit shell on ruff failure
out=$(ruff check --select I --diff . 2> app_stderr.txt)
exit_code=$?
err=$(<app_stderr.txt)
# Display the raw output in the step
echo "${out}"
echo "${err}"
# Display the Markdown output in the job summary
{ echo "\`\`\`diff"; echo "${out}"; echo "${err}"; echo "\`\`\`"; } >> "$GITHUB_STEP_SUMMARY"
# Exit with the exit-code returned by ruff
exit ${exit_code}