diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index c1ec1fca0..326ab02b5 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [macos-latest, ubuntu-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] - bitcoind-version: ["0.18.0", "25.0"] + bitcoind-version: ["0.18.0", "25.1"] steps: - uses: actions/checkout@v3 @@ -18,14 +18,14 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Cache venv - id: cache-venv - uses: actions/cache@v3 - env: - cache-name: venv - with: - path: jmvenv - key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }} +# - name: Cache venv +# id: cache-venv +# uses: actions/cache@v3 +# env: +# cache-name: venv +# with: +# path: jmvenv +# key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }} - name: Setup joinmarket + virtualenv if: steps.cache-venv.outputs.cache-hit != 'true' run: |