diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 689ef207..8fbf9aec 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -19,20 +19,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: codespell-project/actions-codespell@master + - uses: chartboost/ruff-action@v1.0.0 - name: Run yamllint uses: ibiqlik/action-yamllint@v3 with: file_or_dir: "./" config_file: "./.yaml-lint.yaml" strict: true - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.10" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Lint with ruff - run: | - ruff check --format=github .