Skip to content

Add comprehensive GitHub Copilot instructions for BindsNET #399

Add comprehensive GitHub Copilot instructions for BindsNET

Add comprehensive GitHub Copilot instructions for BindsNET #399

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
<<<<<<< HEAD

Check failure on line 12 in .github/workflows/pythonpackage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pythonpackage.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
python-version: ["3.10", "3.11", "3.12"]
=======
python-version: ["3.10", "3.11", "3.12", "3.13"]
>>>>>>> origin
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
env:
<<<<<<< HEAD
POETRY_VERSION: 2.0.0
=======
POETRY_VERSION: 2.1.2
>>>>>>> origin
run: |
curl -sSL https://install.python-poetry.org | python - -y &&\
poetry config virtualenvs.create false
- name: Install dependencies
run: |
poetry install
- name: Format with black
run: |
black .
- name: Test with pytest
run: |
pytest