Fixes quad_over_lin.value #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test_gcsopt | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| jobs: | |
| test_backends: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - uses: actions/checkout@v5 | |
| - name: Install pytest and gcsopt | |
| run: | | |
| pip install . pytest hypothesis | |
| git clone https://github.com/TobiaMarcucci/gcsopt.git | |
| cd gcsopt | |
| git submodule update --init --recursive | |
| pip install . | |
| - name: Run test_gcsopt | |
| run : | | |
| pytest gcsopt/tests |