diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02bc7c7..084710a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,3 +41,17 @@ jobs: python -m pip install --upgrade pip setuptools numpy scipy hypothesis pip install --progress-bar off . - run: python -m unittest + test-numpy2: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v4 + with: + architecture: x64 + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools scipy hypothesis + python -m pip install --pre --upgrade numpy + pip install --progress-bar off . + - run: python -m unittest \ No newline at end of file