File tree Expand file tree Collapse file tree 5 files changed +50
-47
lines changed
Expand file tree Collapse file tree 5 files changed +50
-47
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " github-actions"
4+ directory : " /"
5+ schedule :
6+ interval : " monthly"
7+ - package-ecosystem : " julia"
8+ directory : " /"
9+ schedule :
10+ interval : " monthly"
11+ # groups: # uncomment to group all julia package updates into a single PR
12+ # all-julia-packages:
13+ # patterns:
14+ # - "*"
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ branches :
5+ - master
6+ pull_request :
7+ concurrency :
8+ # Skip intermediate builds: always.
9+ # Cancel intermediate builds: only if it is a pull request build.
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
12+ jobs :
13+ test :
14+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
15+ runs-on : ${{ matrix.os }}
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ version :
20+ - ' 1.12'
21+ - ' nightly'
22+ os :
23+ - ubuntu-latest
24+ arch :
25+ - x64
26+ steps :
27+ - uses : actions/checkout@v2
28+ - uses : julia-actions/setup-julia@v1
29+ with :
30+ version : ${{ matrix.version }}
31+ arch : ${{ matrix.arch }}
32+ include-all-prereleases : true
33+ - uses : julia-actions/cache@v1
34+ - uses : julia-actions/julia-buildpkg@v1
35+ - uses : julia-actions/julia-runtest@v1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1414 - uses : actions/checkout@v2
1515 - uses : julia-actions/setup-julia@latest
1616 with :
17- version : ' 1.11 '
17+ version : ' 1.12 '
1818 - name : Install dependencies
1919 run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2020 - name : Build and deploy
You can’t perform that action at this time.
0 commit comments