Skip to content

chore(deps): update actions/checkout digest to 692973e #223

chore(deps): update actions/checkout digest to 692973e

chore(deps): update actions/checkout digest to 692973e #223

Workflow file for this run

# 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: watlow
on:
push:
branches: [ "master" ]
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.1", "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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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 watlow
- name: Pytest
run: |
pytest