From 75c50479106d9e9251fb3f3e09b3f99dd7d26a25 Mon Sep 17 00:00:00 2001 From: TAdev0 Date: Tue, 9 Jul 2024 14:02:09 +0200 Subject: [PATCH] add sympy in ci --- .github/workflows/integration-test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index b788a923..6d625a4d 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -1,6 +1,6 @@ name: Integration Tests -on: +on: push: branches: - main @@ -15,11 +15,14 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.9' + python-version: "3.9" - name: Install cairo-lang run: pip install cairo-lang==0.13.1 - + + - name: Install sympy + run: pip install sympy==1.12.1 + - name: Build run: make build