Bump version to 1.35.0 and update changelog #758
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: Python Lint | |
on: | |
pull_request: | |
paths: | |
- "python/**" | |
- "openapi.json" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v2 | |
name: Install Python | |
with: | |
python-version: '3.11' | |
- name: Install deps | |
run: | | |
cd python | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt . | |
python -m pip install -r requirements-dev.txt . | |
- name: Regen openapi libs | |
run: | | |
cd python | |
./scripts/generate_openapi.sh | |
- name: Run linting | |
run: | | |
cd python | |
sh ./scripts/lint.sh |