Skip to content

handle copies differently, make neighbors init by value and not by re… #1

handle copies differently, make neighbors init by value and not by re…

handle copies differently, make neighbors init by value and not by re… #1

Workflow file for this run

name: Test Code with Pytest
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ '3.10', '3.11' ]
architecture: [ 'x64' ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install Dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Run Tests
run: pytest