PR-5790 Add CORS preflight OPTIONS request #653
Workflow file for this run
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: | |
pull_request: | |
jobs: | |
flake8: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- uses: TrueBrain/actions-flake8@v2 | |
with: | |
flake8_version: 6.0.0 | |
plugins: flake8-isort~=6.0 | |
requirements: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check requirements.in order | |
run: | | |
shopt -s nullglob | |
for f in requirements/*.in; do | |
LANG=C sort -c "$f" | |
done |