Skip to content

Update dgl requirement from <=2.0 to <=2.2.1 #18

Update dgl requirement from <=2.0 to <=2.2.1

Update dgl requirement from <=2.0 to <=2.2.1 #18

Workflow file for this run

name: Python Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff mypy
- name: Lint with ruff
run: |
ruff check .
- name: Check formatting with ruff
run: |
ruff format --check .
- name: Type check with mypy
run: |
mypy themap