Increase gateway proxy request timeout to 10s #213
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: | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2 | |
- name: Setup a local virtual environment | |
run: | | |
poetry config virtualenvs.create true --local | |
poetry config virtualenvs.in-project true --local | |
- name: Cache the virtualenv | |
uses: actions/cache@v3 | |
with: | |
path: ./.venv | |
key: venv-${{ hashFiles('poetry.lock') }} | |
- name: Install python dependencies | |
run: poetry install | |
- name: Ruff check | |
uses: astral-sh/ruff-action@v1 | |
with: | |
args: "check --ignore=E501" | |
- name: Ruff format | |
uses: astral-sh/ruff-action@v1 | |
with: | |
args: "format --check" | |
- name: isort check | |
uses: isort/isort-action@v1 |