Skip to content

Added test for iteration 2 #43

Added test for iteration 2

Added test for iteration 2 #43

Workflow file for this run

---
name: mypy
# NOTE: This is a temporary (separate) workflow that runs mypy.
# We're doing this ahead of its adoption in the main 'test' workflow.
# -----------------
# Control variables (GitHub Secrets)
# -----------------
#
# (n/a)
#
# -----------
# Environment (GitHub Environments)
# -----------
#
# Environment (n/a)
on:
- push
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Run mypy
run: |
pip install --upgrade pip
pip install .[dev]
mypy xchemalign