File tree 2 files changed +57
-0
lines changed
2 files changed +57
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This is used by the action https://github.com/dorny/paths-filter
2
+ docker : &docker
3
+ - added|modified : ' ./docker/**/*'
4
+ - added|modified : ' ./docker/*'
5
+
6
+ dependencies : &dependencies
7
+ - ' pdm.lock'
8
+ - ' pyproject.toml'
9
+
10
+ actions : &actions
11
+ - added|modified : ' ./.github/**/*'
12
+
13
+ python : &python
14
+ - added|modified : ' src/**'
15
+ - added|modified : ' tests/**'
16
+ - ' manage.py'
17
+
18
+ changelog :
19
+ - added|modified : ' changes/**'
20
+ - ' CHANGELOG.md'
21
+
22
+ mypy :
23
+ - *python
24
+ - ' mypy.ini'
25
+
26
+ run_tests :
27
+ - *actions
28
+ - *python
29
+ - *docker
30
+ - *dependencies
31
+ - ' pytest.ini'
32
+
33
+ migrations :
34
+ - added|modified : ' src/**/migrations/*'
35
+
36
+ lint :
37
+ - *python
38
+ - ' .flake8'
39
+ - ' pyproject.toml'
40
+
41
+ docs :
42
+ - added|modified : ' ./docs/**/*'
43
+ - modified : ' ./src/birder/config/__init__.py'
44
+ - modified : ' ./github/workflows/docs.yml'
45
+ - modified : ' ./github/file-filters.yml'
Original file line number Diff line number Diff line change 8
8
pull_request :
9
9
10
10
jobs :
11
+ pkg_meta :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : actions/setup-python@v2
16
+
17
+ - name : Install dependencies
18
+ run : |
19
+ python -m pip install --upgrade pip tox
20
+ - name : Lint with flake8
21
+ run : |
22
+ tox -e pkg_meta
11
23
lint :
12
24
runs-on : ubuntu-latest
13
25
steps :
You can’t perform that action at this time.
0 commit comments