-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (37 loc) · 919 Bytes
/
lint.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
name: Lint
on:
push:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- 'ci_lint_runner.py'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- 'ci_lint_runner.py'
- '.github/workflows/**'
permissions:
contents: read
jobs:
lint-check:
name: Lint Check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: '3.10'
- name: Install dependencies
run: |
sudo apt -qq update
pip3 install pylint --upgrade
- name: Run Lint check
run: |
python3 ci_lint_runner.py pfdl_scheduler 8
python3 ci_lint_runner.py tests 8