Skip to content

Commit ff3dcba

Browse files
Normalize CI and remove build artifacts
1 parent 963d12a commit ff3dcba

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on:
3+
push:
4+
pull_request:
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Python tests
11+
run: |
12+
python3 -m pip install --upgrade pip
13+
pip install pytest networkx numpy || true
14+
if [ -d tests ]; then pytest -q; fi

0 commit comments

Comments
 (0)