Skip to content

Commit

Permalink
fixup! meta: bump to 0.5.2 and fix pylint<3
Browse files Browse the repository at this point in the history
  • Loading branch information
Exirel committed Oct 19, 2024
1 parent ac58368 commit b208af0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,22 @@ jobs:
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade wheel
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade -r requirements.txt
python -m pip install -e .
- name: Lint
run: make lint
run: |
isort sopel_help
flake8
pylint sopel_help
pyroma .
- name: Tests
run: make test
run: |
coverage run -m pytest -v .
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ lint-check:

lint-style:
pylint sopel_help
ls -l
pyroma .

lint: lint-check lint-style
Expand Down

0 comments on commit b208af0

Please sign in to comment.