Skip to content

build(deps-dev): Bump mypy from 0.982 to 1.11.1 #246

build(deps-dev): Bump mypy from 0.982 to 1.11.1

build(deps-dev): Bump mypy from 0.982 to 1.11.1 #246

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