File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ push :
7+ branches :
8+ - master
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ group :
15+ - All
16+ version :
17+ - ' 1'
18+ - ' 1.6'
19+ steps :
20+ - uses : actions/checkout@v2
21+ - uses : julia-actions/setup-julia@v1
22+ with :
23+ version : ${{ matrix.version }}
24+ - uses : actions/cache@v1
25+ env :
26+ cache-name : cache-artifacts
27+ with :
28+ path : ~/.julia/artifacts
29+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
30+ restore-keys : |
31+ ${{ runner.os }}-test-${{ env.cache-name }}-
32+ ${{ runner.os }}-test-
33+ ${{ runner.os }}-
34+ - uses : julia-actions/julia-buildpkg@v1
35+ - uses : julia-actions/julia-runtest@v1
You can’t perform that action at this time.
0 commit comments