-
Notifications
You must be signed in to change notification settings - Fork 4
43 lines (36 loc) · 982 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
43
name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Check out the repository code
- name: Checkout repository
uses: actions/checkout@v4
# Set up Python
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10' # Only for one python version to save on resources
# Run black
- name: black
uses: psf/black@stable
with:
options: "--check --verbose"
src: "./dtaianomaly"
# Install dtaianomaly (not required for black)
- name: Install dtaianomaly
run: |
python -m pip install --upgrade pip
pip install .[all]
pip list
# Apply isort
- name: isort
uses: isort/isort-action@v1.1.1
with:
sortPaths: "dtaianomaly"
configuration: "--check-only --diff --profile black"