chore(deps): update ruff to v0.7.1 #326
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: productivity | |
on: | |
push: | |
branches: | |
- "master" | |
- "renovate/**" | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
pymodbus-version: ["2.5.3", "3.0.2", "3.1.3", "3.2.2", "3.3.1", "3.4.1", "3.5.4", "3.6.4"] | |
exclude: | |
- python-version: "3.10" | |
pymodbus-version: "2.5.3" | |
- python-version: "3.11" | |
pymodbus-version: "2.5.3" | |
- python-version: "3.12" | |
pymodbus-version: "2.5.3" | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
allow-prereleases: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install 'pymodbus==${{ matrix.pymodbus-version }}' | |
python -m pip install '.[test]' | |
- name: Lint with ruff | |
run: | | |
ruff . | |
- name: Check types with mypy | |
run: | | |
mypy productivity | |
- name: Pytest | |
run: | | |
pytest |