Skip to content

Commit

Permalink
chore: add ruff CI
Browse files Browse the repository at this point in the history
  • Loading branch information
0xricksanchez committed Sep 26, 2023
1 parent dc894fd commit ac4d5b5
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ac4d5b5

Please sign in to comment.