Skip to content

Commit

Permalink
Bypas artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Valentino authored and Antonio Valentino committed Nov 15, 2023
1 parent fe8ba30 commit b23f9c7
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b23f9c7

Please sign in to comment.