pesos/browser-history

View on GitHub
.github/workflows/python-mypy.yml

Summary

Maintainability
Test Coverage
name: mypy

on:
  push:
    branches: [ master, 'feature-*' ]
  pull_request:
    branches: [ master, 'feature-*' ]

jobs:
  build:

    strategy:
      matrix:
        python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
        platform: [ubuntu-latest]

    runs-on: ${{ matrix.platform }}

    steps:
    - uses: actions/checkout@v4
    - uses: actions/setup-python@v5
      with:
        python-version: ${{ matrix.python-version }}
    - run: python -m pip install --upgrade pip
    - uses: jpetrucciani/mypy-check@master
      with:
        path: 'browser_history'