Skip to content

Commit 56eb7dc

Browse files
committed
ci: Simplify CI workflow by removing linting checks
1 parent e6db41c commit 56eb7dc

File tree

1 file changed

+1
-29
lines changed

1 file changed

+1
-29
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,7 @@ on:
99
- main
1010

1111
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-
3912
test:
40-
needs: lint
4113
runs-on: ubuntu-latest
4214
strategy:
4315
matrix:
@@ -64,4 +36,4 @@ jobs:
6436
uses: codecov/codecov-action@v3
6537
with:
6638
file: ./coverage.xml
67-
fail_ci_if_error: true
39+
fail_ci_if_error: false

0 commit comments

Comments
 (0)