Skip to content

added GNO with test and tutorial #508

added GNO with test and tutorial

added GNO with test and tutorial #508

Workflow file for this run

name: "Testing Pull Request"
on:
pull_request:
branches:
- "master"
- "0.2"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[test]
python3 -m pip install torch_cluster -f https://data.pyg.org/whl/torch-2.2.0+cpu.html
- name: Test with pytest
run: |
python3 -m pytest