diff options
| author | J08nY | 2023-09-28 11:55:32 +0200 |
|---|---|---|
| committer | J08nY | 2023-09-28 11:55:32 +0200 |
| commit | edae0ca0627926772045c105ae4551c18f872653 (patch) | |
| tree | 4cf7d3ee5952d64dc7efc529b0365833a05b883e /.github/workflows | |
| parent | 5befde87b18b129c7c1441dda42344345505f7c7 (diff) | |
| download | pyecsca-codegen-edae0ca0627926772045c105ae4551c18f872653.tar.gz pyecsca-codegen-edae0ca0627926772045c105ae4551c18f872653.tar.zst pyecsca-codegen-edae0ca0627926772045c105ae4551c18f872653.zip | |
Fix caching in CI.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 597153d..fddf6f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,9 @@ jobs: - uses: actions/cache@v3 with: path: ~/.cache/pip - key: pip-${{ runner.os }}-${{ matrix.gmp }}-${{ matrix.python-version }}-${{ hashFiles('setup.py') }} + key: pip-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }} restore-keys: | - pip-${{ runner.os }}-${{ matrix.gmp }}-${{ matrix.python-version }}- - pip-${{ runner.os }}-${{ matrix.gmp }}- + pip-${{ runner.os }}-${{ matrix.python-version }}- pip-${{ runner.os }}- - name: Setup Python ${{ matrix.python-version }} uses: actions/setup-python@v3 |
