diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 51e9cff..facc40d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,8 +23,15 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Run tests + - name: Show Python Version run: | python --version - python setup.py install + - name: Install dependencies + run: | + python -m pip install wheel + - name: Install + run: | + python -m pip install . + - name: Run tests + run: | python test/run_tests.py