File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 2525 strategy :
2626 fail-fast : false # Continue with other jobs if one fails
2727 matrix :
28- python-version : ['3.10 ']
28+ python-version : ['3.11 ']
2929
3030 steps :
3131 - uses : actions/checkout@v4
3636 uses : actions/setup-python@v4
3737 with :
3838 python-version : ${{ matrix.python-version }}
39+
40+ # Cache Python packages
41+ - name : Cache pip packages
42+ uses : actions/cache@v3
43+ with :
44+ path : ~/.cache/pip
45+ key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
46+ restore-keys : |
47+ ${{ runner.os }}-pip-${{ matrix.python-version }}-
48+
49+ # Cache Rust dependencies
50+ - name : Cache Cargo registry and index
51+ uses : actions/cache@v3
52+ with :
53+ path : |
54+ ~/.cargo/registry
55+ ~/.cargo/git
56+ target
57+ key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml', '**/Cargo.lock') }}
58+ restore-keys : |
59+ ${{ runner.os }}-cargo-
3960
4061 - name : Create virtual environment
4162 run : |
Original file line number Diff line number Diff line change 11pytest >= 7.0.0
22pytest-benchmark >= 4.0.0
33statistics >= 1.0.3.5
4- c2pa-python >= 0.8 .0
4+ c2pa-python >= 0.9 .0
55cryptography >= 44.0.0
You can’t perform that action at this time.
0 commit comments