-
Notifications
You must be signed in to change notification settings - Fork 24
72 lines (54 loc) · 2.02 KB
/
run-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
name: HDX/CKAN linter
on:
push:
branches: [ '**' ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ dev ]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install ruff linter
run: pip install ruff
- name: Run ruff linter for ckanext-hdx_dataviz
run: ruff check ckanext-hdx_dataviz
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_hxl_preview
run: ruff check ckanext-hdx_hxl_preview
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_office_preview
run: ruff check ckanext-hdx_office_preview
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_org_group
run: ruff check ckanext-hdx_org_group
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_package
run: ruff check ckanext-hdx_package
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_pages
run: ruff check ckanext-hdx_pages
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_search
run: ruff check ckanext-hdx_search
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_service_checker
run: ruff check ckanext-hdx_service_checker
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_theme
run: ruff check ckanext-hdx_theme
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_user_extra
run: ruff check ckanext-hdx_user_extra
continue-on-error: true
- name: Run ruff linter for ckanext-hdx_users
run: ruff check ckanext-hdx_users
continue-on-error: true
- name: Run ruff linter for ckanext-sitemap
run: ruff check ckanext-sitemap
continue-on-error: true
- name: Run ruff linter for ckanext-ytp-request
run: ruff check ckanext-ytp-request
continue-on-error: true