From 274d8424e6a624127248a77bbff5b28b69457821 Mon Sep 17 00:00:00 2001 From: Avinash Kumar Deepak Date: Wed, 4 Feb 2026 11:04:08 +0530 Subject: [PATCH] Add CI workflow to test concore imports --- .github/workflows/test-concore.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-concore.yml 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')"