diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ec35894..83597d2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,20 +1,18 @@ name: Lint on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] + push: + branches: ["main"] + pull_request: + branches: ["main"] jobs: - build: + build: + runs-on: ubuntu-latest - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Lint with Ruff - run: | - pip install ruff - ruff --output-format=github . - + steps: + - uses: actions/checkout@v4 + - name: Lint with Ruff + run: | + pip install ruff + ruff check --output-format=github .