File tree Expand file tree Collapse file tree 1 file changed +1
-29
lines changed Expand file tree Collapse file tree 1 file changed +1
-29
lines changed Original file line number Diff line number Diff line change 9
9
- main
10
10
11
11
jobs :
12
- lint :
13
- runs-on : ubuntu-latest
14
- steps :
15
- - uses : actions/checkout@v3
16
-
17
- - name : Set up Python
18
- uses : actions/setup-python@v4
19
- with :
20
- python-version : " 3.8"
21
-
22
- - name : Install dependencies
23
- run : |
24
- python -m pip install --upgrade pip
25
- pip install -e ".[dev]"
26
-
27
- - name : Check formatting with black
28
- run : black . --check
29
-
30
- - name : Check imports with isort
31
- run : isort . --check-only --diff
32
-
33
- - name : Lint with flake8
34
- run : flake8 .
35
-
36
- - name : Type check with mypy
37
- run : mypy src/promptix
38
-
39
12
test :
40
- needs : lint
41
13
runs-on : ubuntu-latest
42
14
strategy :
43
15
matrix :
64
36
uses : codecov/codecov-action@v3
65
37
with :
66
38
file : ./coverage.xml
67
- fail_ci_if_error : true
39
+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments