File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change 4
4
branches :
5
5
- main
6
6
paths-ignore :
7
- - ' **.md'
7
+ - " **.md"
8
8
pull_request :
9
9
paths-ignore :
10
- - ' **.md'
10
+ - " **.md"
11
11
jobs :
12
12
run :
13
13
name : Run
@@ -17,24 +17,24 @@ jobs:
17
17
python-version : ["3.10"]
18
18
19
19
steps :
20
- - name : Checkout
21
- uses : actions/checkout@v2
20
+ - name : Checkout
21
+ uses : actions/checkout@v2
22
22
23
- - name : Set up Python ${{ matrix.python-version }}
24
- uses : actions/setup-python@v2
25
- with :
26
- python-version : ${{ matrix.python-version }}
23
+ - name : Set up Python ${{ matrix.python-version }}
24
+ uses : actions/setup-python@v2
25
+ with :
26
+ python-version : ${{ matrix.python-version }}
27
27
28
28
- name : Install dependencies
29
29
run : |
30
30
pip install --upgrade pip
31
31
pip install -e .[dev]
32
32
33
- - name : Lint
34
- run : |
35
- black --check .
36
- mypy .
33
+ - name : Lint
34
+ run : |
35
+ black --check .
36
+ mypy .
37
37
38
- - name : Test with pytest
39
- run : |
40
- pytest .
38
+ - name : Test with pytest
39
+ run : |
40
+ pytest .
You can’t perform that action at this time.
0 commit comments