Skip to content

Update steady state solver call #37

Update steady state solver call

Update steady state solver call #37

Workflow file for this run

name: qa
on:
pull_request:
branches:
- main
jobs:
check-flake8:
name: Python linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install flake8
- name: Lint with flake8
run: |
flake8 . --count --show-source --statistics