Skip to content

Commit

Permalink
ci: replace flake8 with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Jul 7, 2024
1 parent 865232b commit 2878774
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,18 @@ on:
- cron: '17 3 * * 0'

jobs:
flake8:
name: Flake8
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
-
uses: actions/setup-python@v5
with:
# matches compat target in setup.py
python-version: '3.8'
submodules: true
- uses: actions/setup-python@v5
- name: "Main Script"
run: |
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
# FIXME Remove when we're upgrading to Python 3.10.
rm test/test_pattern_match.py
. ./prepare-and-run-flake8.sh pymbolic test experiments
pip install ruff
ruff check
pylint:
name: Pylint
Expand Down
10 changes: 5 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ Documentation:
tags:
- linux

Flake8:
script:
- curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
- . ./prepare-and-run-flake8.sh pymbolic test experiments
Ruff:
script: |
pipx install ruff
ruff check
tags:
- python3
- docker-runner
except:
- tags

Expand Down

0 comments on commit 2878774

Please sign in to comment.