From 9ecb71ab6f5b6441810d0b2c583981585b0368c4 Mon Sep 17 00:00:00 2001 From: Gabriel Gouvine Date: Fri, 15 Dec 2023 15:17:06 +0000 Subject: [PATCH] Add CI --- .github/workflows/test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..33bbb54 --- /dev/null +++ b/.github/workflows/test.yml @@ -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