From ac4d5b530ad28970a1dd43268dc4d4eb05795244 Mon Sep 17 00:00:00 2001 From: 434b Date: Tue, 26 Sep 2023 10:53:02 +0200 Subject: [PATCH] chore: add ruff CI --- .github/workflows/ruff.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/ruff.yml diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml new file mode 100644 index 0000000..28f1359 --- /dev/null +++ b/.github/workflows/ruff.yml @@ -0,0 +1,42 @@ +name: ruff + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: 3.10.12 + + - name: Install poetry + run: | + curl -sSL https://install.python-poetry.org | python3 - + + - name: Cache dependencies + uses: actions/cache@v2 + with: + path: ~/.cache/pypoetry + key: ${{ runner.os }}-poetry-${{ hashFiles('**/pyproject.toml') }} + restore-keys: | + ${{ runner.os }}-poetry- + + - name: Install dependencies + run: poetry install + + - name: Check lock file + run: poetry check --lock + + - name: Run ruff + run: poetry run ruff check . --fix --show-source --show-fixes --exit-non-zero-on-fix