Skip to content

Bump starlette from 0.47.1 to 0.47.2 (#16) #44

Bump starlette from 0.47.1 to 0.47.2 (#16)

Bump starlette from 0.47.1 to 0.47.2 (#16) #44

name: Static Checking
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
Check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry config virtualenvs.create false --local
poetry install --all-extras -vvv
- name: validate
run: ./validate.sh
- name: tests
run: ./test.sh