Update _validate_sequential_inputs to valdiate non-linear constraints… #4787
This file contains 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: Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
ufmt: | |
name: Code formatting and sorting with ufmt | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
# pin dependencies to match Meta-internal versions | |
pip install -r requirements-fmt.txt | |
pip install ufmt | |
- name: ufmt | |
run: | | |
ufmt diff . | |
flake8: | |
name: Lint with flake8 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
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 flake8-docstrings | |
- name: Flake8 | |
run: | | |
flake8 |