Skip to content

Commit

Permalink
switch github actions to run ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
leahh committed Jan 10, 2025
1 parent 12f3359 commit 0262d97
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pylama.yml → .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PyLama Lint
name: Ruff Lint

on:
# For manual exec
Expand All @@ -11,13 +11,13 @@ on:
branches: [main, develop]

jobs:
pylama:
ruff:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'WIP (no-ci)')) }}
name: PyLama Lint
name: Ruff Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: |
pip install pylama==8.4.1 pyflakes==3.0.1 pylint==2.15.9 pydocstyle==6.1.1 2>&1 >/dev/null
pylama beeflow/
pip install ruff==0.9.0 2>&1 >/dev/null
ruff check beeflow/

0 comments on commit 0262d97

Please sign in to comment.