mirror of
https://github.com/actions/setup-python.git
synced 2025-07-18 18:08:21 +02:00
first iteration
This commit is contained in:
parent
2d803e7fea
commit
eaf0789850
13 changed files with 121677 additions and 7663 deletions
13
src/cache-distributions/pip-cache.ts
Normal file
13
src/cache-distributions/pip-cache.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import CacheDistributor from './cache-distributor';
|
||||
|
||||
class PipCache extends CacheDistributor {
|
||||
constructor() {
|
||||
super({
|
||||
command: 'pip cache dir',
|
||||
patterns: ['**/requirements.txt'],
|
||||
toolName: 'pip'
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default PipCache;
|
Loading…
Add table
Add a link
Reference in a new issue