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