Skip to content

Update pylint.yml

Update pylint.yml #635

Workflow file for this run

---
name: Test
"on":
push:
paths-ignore:
- 'docs/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install pipx
run: pip install pipx
- name: Install poetry
run: pipx install poetry
- name: Install dependencies
run: |
poetry install -v -E torque --with dev
- name: Run unit tests
run: |
poetry run pytest
- name: Analyze the code with pylint
run: |
poetry run pylint src/pyrosimple/