Skip to content

Merge pull request #1527 from pints-team/1209-composed-boundaries #1359

Merge pull request #1527 from pints-team/1209-composed-boundaries

Merge pull request #1527 from pints-team/1209-composed-boundaries #1359

Workflow file for this run

name: Style tests (flake8)
on:
push:
branches:
- main
pull_request:
# Run workflow when PR is changed, or when changed from draft to ready
types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
jobs:
build-and-test:
name: Style
runs-on: ubuntu-latest
# Skip job if it's a draft PR
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: install pints
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install .
python -m pip install .[dev]
- name: run style tests
run: |
python -m flake8