fix bug that caused LB/UB to not be enforced by remote component if limit was (scalar) 0 #136
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: flake8 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| jobs: | |
| # --- code style check by flake8 --- | |
| flake8: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.8' | |
| # use both MDO Lab standard config | |
| - name: Code style (flake8) | |
| run: | | |
| pip install flake8 | |
| python -m flake8 mphys --count --show-source --statistics |