We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d3fc8 commit 4ac3380Copy full SHA for 4ac3380
.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
@@ -7,6 +7,9 @@ julia:
7
- 1.0
8
notifications:
9
email: false
10
+cache:
11
+ directories:
12
+ - $HOME/.julia/artifacts
13
14
after_success:
15
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
0 commit comments