diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 881e572..df83733 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: test: runs-on: ${{ matrix.os }} ${{ matrix.python-version }} - needs: build + # needs: build strategy: matrix: python-version: ["3.7", "3.x"] @@ -57,11 +57,11 @@ jobs: with: submodules: 'true' - - name: Get distribution - uses: actions/download-artifact@v3 - with: - name: dist - path: dist + # - name: Get distribution + # uses: actions/download-artifact@v3 + # with: + # name: dist + # path: dist - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 @@ -70,9 +70,12 @@ jobs: - name: Install run: | - python -m pip install --upgrade pip + # python -m pip install --upgrade pip + # python -m pip install dist/*.whl + python -m pip install --upgrade pip build + python -m build . python -m pip install dist/*.whl - + - name: Install test dependencies run: | python -m pip install pytest pytest-cov