Skip to content

Make Float Integer comparisons more robust #215

Make Float Integer comparisons more robust

Make Float Integer comparisons more robust #215

Workflow file for this run

name: Style
on: [pull_request]
jobs:
style:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install tools
run: |
python --version
python -m pip install --upgrade pip
python -m pip install flake8 isort
- name: Check code style
run: |
python -m flake8
- name: Check imports are ordered correctly
run: |
python -m isort --verbose --check-only --diff cellmlmanip tests