Skip to content

Filter unrelated file types #17

Filter unrelated file types

Filter unrelated file types #17

Workflow file for this run

name: Static Types Checker.
on:
pull_request:
branches: [ "*" ]
push:
branches: [ "main" ]
jobs:
mypy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirement.txt
**/test-requirement.txt
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
- name: Running static types checker.
run: |
mypy