diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 05b6c09..9104ce7 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -17,6 +17,7 @@ jobs: runs-on: ${{ matrix.os }} + # TODO: Add cache support steps: - uses: actions/checkout@v3 - name: Set up Python 3.11 @@ -27,14 +28,10 @@ jobs: run: | python -m pip install packaging pipenv psutil python setup.py setup - - name: Get pip cache dir - id: pipenv-cache - run: | - echo "dir=$(pipenv --venv)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 - with: - path: ${{ steps.pipenv-cache.outputs.dir }} - key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }} +# - name: Get pip cache dir +# id: pipenv-cache +# run: | +# echo "dir=$(pipenv --venv)" >> $GITHUB_OUTPUT - name: Run tests run: python setup.py test build: @@ -54,14 +51,10 @@ jobs: run: | python -m pip install packaging pipenv psutil python setup.py setup - - name: Get pip cache dir - id: pipenv-cache - run: | - echo "dir=$(pipenv --venv)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 - with: - path: ${{ steps.pipenv-cache.outputs.dir }} - key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }} +# - name: Get pip cache dir +# id: pipenv-cache +# run: | +# echo "dir=$(pipenv --venv)" >> $GITHUB_OUTPUT - name: Build run: python setup.py build - name: Upload files