Skip to content

Fix macos-latest CI failing due to Python 3.7 not being available on … #12

Fix macos-latest CI failing due to Python 3.7 not being available on …

Fix macos-latest CI failing due to Python 3.7 not being available on … #12

Workflow file for this run

name: mypy
on:
- push
- pull_request
jobs:
type:
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run type checking with tox
env:
TOXENV: "type"
run: tox