Skip to content

Commit

Permalink
add ruff checks
Browse files Browse the repository at this point in the history
  • Loading branch information
armaan-abraham committed Jun 4, 2024
1 parent 590f4f8 commit 6e9838f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/black.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test

on: [push]

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: poetry install --no-interaction
- name: Run ruff check
run: poetry run ruff check .
- name: Run ruff format check
run: poetry run ruff format --check .

0 comments on commit 6e9838f

Please sign in to comment.