Skip to content

Dyamond2 Example

Dyamond2 Example #113

Workflow file for this run

name: Mypy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # Adjust to your project's Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
pip install types-requests
- name: Run mypy
run: mypy pyrte_rrtmgp