From cdadf97e3240c129b01e251e00f705ebfe7333a8 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sat, 21 Oct 2023 10:06:48 -0700 Subject: [PATCH] Update workflow with ruff action (#363) Update workflow with ruff action --- .github/workflows/lint.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) 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 .