FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bindsnet/.github/workflows/pythonpackage.yml at master · BindsNET/bindsnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
BindsNET
/
bindsnet
Public
Notifications
You must be signed in to change notification settings
Fork
347
Star
1.7k
Code
Issues
9
Pull requests
6
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
bindsnet
/
.github
/
workflows
/
pythonpackage.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
33 lines (29 loc) · 730 Bytes
Breadcrumbs
bindsnet
/
.github
/
workflows
/
pythonpackage.yml
Copy path
File metadata and controls
33 lines (29 loc) · 730 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name
:
Python package
on
:
[push]
jobs
:
build
:
runs-on
:
ubuntu-latest
strategy
:
max-parallel
:
4
matrix
:
python-version
:
["3.11", "3.12", "3.13"]
steps
:
-
uses
:
actions/checkout@v4
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v5
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install Poetry
env
:
POETRY_VERSION
:
2.1.2
run
:
|
curl -sSL https://install.python-poetry.org | python - -y
-
name
:
Install dependencies
run
:
|
poetry install
-
name
:
Format with black
run
:
|
poetry run black .
-
name
:
Test with pytest
run
:
|
poetry run pytest
Back
|
FazBrowse Home
|
New Git URL