We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ebb54a commit d03fe2fCopy full SHA for d03fe2f
.github/workflows/UnitTest.yml
@@ -25,6 +25,18 @@ jobs:
25
with:
26
version: ${{ matrix.julia-version }}
27
28
+ - name: Cache artifacts
29
+ uses: actions/cache@v1
30
+ env:
31
+ cache-name: cache-artifacts
32
+ with:
33
+ path: ~/.julia/artifacts
34
+ key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
35
+ restore-keys: |
36
+ ${{ runner.os }}-test-${{ env.cache-name }}-
37
+ ${{ runner.os }}-test-
38
+ ${{ runner.os }}-
39
+
40
- name: "Unit Test"
41
uses: julia-actions/julia-runtest@master
42
.travis.yml
@@ -5,7 +5,9 @@ julia: 1.0
5
os: linux
6
notifications:
7
email: false
8
-
+cache:
9
+ directories:
10
+ - $HOME/.julia/artifacts
11
env:
12
- DOCUMENTER_DEBUG=true
13
jobs:
0 commit comments