Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Coloquinte committed Dec 15, 2023
1 parent 7cdc6d4 commit 9ecb71a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]


name: Test

jobs:
build:
name: Test
strategy:
matrix:
os: [ubuntu-latest]
features: [""]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install
run: python3 setup.py install --user

- name: Test
run: test/test_networks.sh

0 comments on commit 9ecb71a

Please sign in to comment.