diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e9f5e06..e9d04df 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: "3.8.18" + python-version: "3.8" - uses: actions/cache@v3 with: @@ -28,14 +28,8 @@ jobs: - name: Build run: make build - - name: Formatting check (black) - run: make check-fmt - - - name: Imports ordering check (isort) - run: make check-imports - - - name: Lint Python check (pylint) - run: make check-lint-python + - name: Lint check (ruff) + run: make check-lint - name: Type check (mypy) run: make check-type