Skip to content

Update test_grid_func_ge.py #30

Update test_grid_func_ge.py

Update test_grid_func_ge.py #30

Workflow file for this run

name: CI
on:
push:
paths:
- "GENetLib/*.py"
- "setup.py"
- "requirements.py"
- "pytest/*.py"
- ".github/workflows/CI.yml"
pull_request:
paths:
- "GENetLib/*.py"
- "setup.py"
- "requirements.py"
- "pytest/*.py"
- ".github/workflows/CI.yml"
workflow_dispatch:
jobs:
build:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install GENetLib & dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Test
run: |
python -m pip install pytest
pytest pytest/