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 : Compat Check
2+
3+ on :
4+ push :
5+ branches :
6+ - ' master'
7+ - ' main'
8+ - ' release-'
9+ tags : ' *'
10+ pull_request :
11+ workflow_dispatch :
12+
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
17+ jobs :
18+ test :
19+ name : Compat bounds check: ${{ matrix.julia-version }}
20+ runs-on : ubuntu-latest
21+ strategy :
22+ matrix :
23+ downgrade_mode : ['alldeps']
24+ julia-version : ['1.10', '1']
25+ steps :
26+ - uses : actions/checkout@v4
27+ - uses : julia-actions/setup-julia@v1
28+ with :
29+ version : ${{ matrix.julia-version }}
30+ - uses : julia-actions/julia-downgrade-compat@v2
31+ with :
32+ mode : ${{ matrix.downgrade_mode }}
33+ skip : Random, LinearAlgebra, Test, Combinatorics
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