File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -51,4 +51,11 @@ steps:
51
51
- run : ape test -s
52
52
` ` `
53
53
54
- **NOTE** This action is still in development
54
+ ## Caching
55
+
56
+ This github action caches resources needed to efficiently use Ape.
57
+ The following table highlights the cached items:
58
+
59
+ - Compiler binaries located in ` $HOME/.vvm` and `$HOME/.solcx`
60
+ - ` $github.workspace/.build` - the compiled project
61
+ - ` $HOME/.ape` to avoid having to re-download dependencies / re-create accounts.
Original file line number Diff line number Diff line change @@ -37,10 +37,15 @@ runs:
37
37
- uses : actions/cache@v4
38
38
name : Build cache
39
39
with :
40
- path : |
41
- ${{ github.workspace }}/.build
40
+ path : ${{ github.workspace }}/.build
42
41
key : ${{ runner.os }}-build-cache
43
42
43
+ - uses : actions/cache@v4
44
+ name : Ape data cache
45
+ with :
46
+ path : $HOME/.ape
47
+ key : ${{ runner.os }}-apedata-cache
48
+
44
49
- uses : actions/setup-python@v5
45
50
with :
46
51
python-version : ${{ inputs.python-version }}
You can’t perform that action at this time.
0 commit comments