[deps]: Update gh minor (#77) #276
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 CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-sdk: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.9' | |
cache: 'poetry' | |
- name: Setup | |
run: poetry env use 3.9 | |
- name: Environment information | |
run: poetry env info | |
- name: Build | |
run: poetry install --with dev,test | |
- name: Run isort | |
run: poetry run isort . --check-only | |
- name: Run docformatter | |
run: poetry run docformatter --in-place --config ./pyproject.toml src/ | |
- name: Run black | |
run: poetry run black . --check | |
- name: Run flake8 | |
run: poetry run flake8 . | |
- name: Run mypy | |
run: poetry run mypy . | |
- name: Test | |
run: poetry run pytest | |
build-flask-example: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.9' | |
cache: 'poetry' | |
- name: Setup | |
run: poetry env use 3.9 | |
- name: Environment information | |
run: poetry env info | |
- name: Build | |
run: | | |
cd examples/flask | |
poetry install --with dev | |
build-streamlit-example: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.9' | |
cache: 'poetry' | |
- name: Setup | |
run: poetry env use 3.9 | |
- name: Environment information | |
run: poetry env info | |
- name: Build | |
run: | | |
cd examples/streamlit | |
poetry install --with dev | |