File tree 3 files changed +21
-49
lines changed
3 files changed +21
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 15
15
- cron : ' 0 6 * * 1'
16
16
17
17
jobs :
18
- black :
19
- name : black
18
+ pre-commit :
20
19
runs-on : ubuntu-latest
21
20
steps :
22
21
- uses : actions/checkout@v4
23
22
- uses : actions/setup-python@v4
24
- with :
25
- python-version : ' 3.11'
26
- - name : Setup
27
- run : pip install black
28
- - name : Lint with black
29
- run : black --check --diff .
30
-
31
- flake8 :
32
- name : flake8
33
- runs-on : ubuntu-latest
34
- steps :
35
- - uses : actions/checkout@v4
36
- - uses : actions/setup-python@v4
37
- with :
38
- python-version : ' 3.11'
39
- - name : Setup
40
- run : pip install flake8
41
- - name : Lint with flake8
42
- run : flake8
43
-
44
- isort :
45
- name : isort
46
- runs-on : ubuntu-latest
47
- steps :
48
- - uses : actions/checkout@v4
49
- - uses : actions/setup-python@v4
50
- with :
51
- python-version : ' 3.11'
52
- - name : Setup
53
- run : pip install isort[colors]
54
- - name : Lint with isort
55
- run : isort --check --diff .
56
-
57
- mypy :
58
- name : mypy
59
- runs-on : ubuntu-latest
60
- steps :
61
- - uses : actions/checkout@v4
62
- - uses : actions/setup-python@v4
63
- with :
64
- python-version : ' 3.11'
65
- - name : Setup
66
- run : pip install mypy pytest
67
- - name : Lint with mypy
68
- run : mypy .
23
+ -
uses :
pre-commit/[email protected]
69
24
70
25
conda :
71
26
name : Conda ${{ matrix.python-version }} - ${{ matrix.os }}
Original file line number Diff line number Diff line change
1
+ repos :
2
+ - repo : https://github.com/pre-commit/pre-commit-hooks
3
+ rev : v4.4.0
4
+ hooks :
5
+ - id : check-yaml
6
+ - id : end-of-file-fixer
7
+ - id : trailing-whitespace
8
+ - repo : https://github.com/psf/black
9
+ rev : 23.9.1
10
+ hooks :
11
+ - id : black
12
+ - repo : https://github.com/astral-sh/ruff-pre-commit
13
+ rev : v0.0.291
14
+ hooks :
15
+ - id : ruff
16
+ - repo : https://github.com/pre-commit/mirrors-mypy
17
+ rev : v1.5.1
18
+ hooks :
19
+ - id : mypy
You can’t perform that action at this time.
0 commit comments