Skip to content

build(deps): Bump uvicorn from 0.30.1 to 0.30.6 #248

build(deps): Bump uvicorn from 0.30.1 to 0.30.6

build(deps): Bump uvicorn from 0.30.1 to 0.30.6 #248

Workflow file for this run

name: Quality gate
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
python_ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
language: ["python"] # for CodeQL
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip poetry
poetry config virtualenvs.create false
poetry install
- name: Run linters
run: |
make lint
- name: Run tests
run: |
make test
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2