Skip to content

Commit 762f100

Browse files
committed
Add compat lower bounds check
1 parent a310e01 commit 762f100

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/CompatCheck.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

0 commit comments

Comments
 (0)