diff --git a/.github/workflows/test-concore.yml b/.github/workflows/test-concore.yml new file mode 100644 index 0000000..383af30 --- /dev/null +++ b/.github/workflows/test-concore.yml @@ -0,0 +1,17 @@ +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + name: Test concore + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + - name: Install dependencies + run: pip install pyzmq beautifulsoup4 lxml numpy scipy + - name: Test import + run: python -c "import concore; print('ok')"