-
Notifications
You must be signed in to change notification settings - Fork 3
143 lines (118 loc) · 3.23 KB
/
linter.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: Linting
on:
push:
branches:
- main
pull_request:
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
jobs:
changed-files:
name: Changed Files
runs-on: ubuntu-latest
outputs:
docs-change: ${{ steps.changed-files.outputs.docs-change_any_modified == 'true' }}
python-change: ${{ steps.changed-files.outputs.python-change_any_modified == 'true' }}
project-change: ${{ steps.changed-files.outputs.project-change_any_modified == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 50 # Assume PRs are less than 50 commits
- name: Find changed files
uses: tj-actions/changed-files@v45
id: changed-files
with:
files_yaml: |
common: &common
- .github/workflows/linter.yml
docs-change:
- *common
- docs/**
- package.json
- package-lock.json
python-change:
- *common
- src/**
- tests/**
- ruff.toml
- poetry.lock
- pyproject.toml
project-change:
- *common
- package.json
- .prettierignore
- .github/ISSUE_TEMPLATE/**
- .github/*.md
lint-python:
name: Python
runs-on: ubuntu-latest
needs: [changed-files]
if: ${{ needs.changed-files.outputs.python-change == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install requirements
run: |
set -xe
python -m pip install poetry
python -m poetry install
- name: Lint with ruff
run: |
set -xe
python -m poetry run ruff format --check
lint-docs:
name: Docs
runs-on: ubuntu-latest
needs: [changed-files]
if: ${{ needs.changed-files.outputs.docs-change == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/[email protected]
with:
cache: npm
- name: Install dependencies
run: |
set -xe
npm i
- name: Lint
run: |
set -xe
npm run lint:docs
lint-project:
name: Project
runs-on: ubuntu-latest
needs: [changed-files]
if: ${{ needs.changed-files.outputs.project-change == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/[email protected]
with:
cache: npm
- name: Install dependencies
run: |
set -xe
npm i
- name: Lint
run: |
set -xe
npm run lint:proj
lint-successful:
if: ${{ always() }}
name: Lint successful
runs-on: ubuntu-latest
needs: [lint-python, lint-docs, lint-project]
steps:
- name: Whether the whole linting suite passed
uses: re-actors/[email protected]
with:
allowed-skips: ${{ toJSON(needs) }}
jobs: ${{ toJSON(needs) }}