forked from django/django
-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (98 loc) · 2.74 KB
/
linters.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
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
name: Linters
on:
workflow_dispatch:
schedule:
- cron: '0 0,5 * * *'
pull_request:
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Eco-CI Init
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: start-measurement
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: python -m pip install flake8
- name: flake8
# Pinned to v2.0.0.
uses: liskin/gh-problem-matcher-wrap@d8afa2cfb66dd3f982b1950429e652bc14d0d7d2
with:
linters: flake8
run: flake8
- name: Eco-CI Measurement
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: get-measurement
label: 'linters-flake8'
- name: Eco-CI Results
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: display-results
isort:
runs-on: ubuntu-latest
steps:
- name: Eco-CI Init
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: start-measurement
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: python -m pip install isort
- name: isort
# Pinned to v2.0.0.
uses: liskin/gh-problem-matcher-wrap@d8afa2cfb66dd3f982b1950429e652bc14d0d7d2
with:
linters: isort
run: isort --check --diff django tests scripts
- name: Eco-CI Measurement
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: get-measurement
label: 'linters-isort'
- name: Eco-CI Results
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: display-results
black:
runs-on: ubuntu-latest
steps:
- name: Eco-CI Init
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: start-measurement
- name: Checkout
uses: actions/checkout@v4
- name: black
uses: psf/black@stable
- name: Eco-CI Measurement
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: get-measurement
label: 'linters-black'
- name: Eco-CI Results
uses: green-coding-berlin/eco-ci-energy-estimation@v2
with:
task: display-results