Skip to content

Commit ec37c14

Browse files
committed
Use ruff instead of pylint
1 parent 2516c2a commit ec37c14

17 files changed

Lines changed: 73 additions & 976 deletions

File tree

.github/workflows/unit_test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ jobs:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Install uv
1717
uses: astral-sh/setup-uv@v6
18-
- name: Run lint
18+
- name: Run lint and type checks
1919
run: |
20-
uv run --python ${{ matrix.python-version }} pylint src/ncoreparser
21-
- name: Check code format
22-
run: |
23-
uv run --python ${{ matrix.python-version }} black --check .
20+
uv run --python ${{ matrix.python-version }} ruff check .
21+
uv run --python ${{ matrix.python-version }} ruff check --select I .
2422
- name: Perform tests
2523
run: |
2624
uv run --python ${{ matrix.python-version }} pytest

0 commit comments

Comments
 (0)