Skip to content

chore: add torch to mypy stub ignore #48

chore: add torch to mypy stub ignore

chore: add torch to mypy stub ignore #48

Workflow file for this run

name: "Running tests: style, mypy"
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
name: Style, mypy
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -e .[dev]
- name: Check black
run: python -m black --check --diff --color .
- name: Check isort
run: python -m isort --check --diff .
- name: Check flake8
run: python -m flake8 .
- name: Check mypy (on the package)
run: python -m mypy --namespace-packages -p rxn.onmt_utils