diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02403b8..c977b1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,12 +38,12 @@ jobs: # Unpin when this is fixed: https://github.com/python/cpython/issues/111615 python-version: '3.11' cache: pip - cache-dependency-path: ./test/py/requirements.txt + cache-dependency-path: ./test/requirements.txt - name: Install dependencies run: | sudo apt-get update sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends $DEPS valgrind - pip install -q -r ./test/py/requirements.txt + pip install -q -r ./test/requirements.txt - name: Build run: make install - name: Upload binaries |