Skip to content

Commit

Permalink
GIT: ruff workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
anmorgunov committed May 30, 2024
1 parent acb24e2 commit 375fd9d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name: DirectMultiStep CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Ruff
on: [push, pull_request]
jobs:
clean-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
- uses: chartboost/ruff-action@v1
with:
args: 'format --check'

0 comments on commit 375fd9d

Please sign in to comment.