Implement Dot and BatchedDot in PyTensor (#878) #744
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mypy | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
micromamba-version: "latest" # any version from https://github.com/mamba-org/micromamba-releases | |
environment-file: environment.yml | |
init-shell: bash | |
cache-environment: true | |
post-cleanup: "all" | |
- name: Install pytensor and mypy dependencies | |
run: | | |
pip install -e . | |
python --version | |
shell: micromamba-shell {0} | |
- name: Run mypy | |
run: | | |
python ./scripts/run_mypy.py --verbose | |
shell: micromamba-shell {0} |