Skip to content

[WIP] compressible: add the ability for a problem-dependent external source #811

[WIP] compressible: add the ability for a problem-dependent external source

[WIP] compressible: add the ability for a problem-dependent external source #811

Workflow file for this run

name: pylint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: "pip"
- name: Install dependencies + pylint
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Install pyro
run: pip install .
- name: Validate
run: pylint --disable=fixme pyro pyro/analysis pyro/**/tests/*.py