Skip to content

Commit abd0bc5

Browse files
authored
MassInstallAction: Install the Downgrade workflow on this repository (#457)
* Automated commit made by MassInstallAction.jl * find_root! is not available in early versions of DataStructures * SimpleTraits permit docstrings only after 0.9.1
1 parent b5da85a commit abd0bc5

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

.github/workflows/downgrade.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Downgrade
2+
on:
3+
pull_request:
4+
branches: [master, main]
5+
paths-ignore:
6+
- 'docs/**'
7+
push:
8+
branches: [master, main]
9+
paths-ignore:
10+
- 'docs/**'
11+
env:
12+
PYTHON: ~
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
version: ['1.10']
19+
steps:
20+
- uses: actions/checkout@v5
21+
- uses: julia-actions/setup-julia@v1
22+
with:
23+
version: ${{ matrix.version }}
24+
- uses: julia-actions/julia-downgrade-compat@v2
25+
with:
26+
skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra
27+
- uses: julia-actions/cache@v2
28+
- uses: julia-actions/julia-buildpkg@v1
29+
- uses: julia-actions/julia-runtest@v1

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1717
[compat]
1818
ArnoldiMethod = "0.4"
1919
Distributed = "1"
20-
DataStructures = "0.17, 0.18, 0.19"
20+
DataStructures = "0.18, 0.19"
2121
Inflate = "0.1.3"
2222
LinearAlgebra = "1"
2323
Random = "1"
2424
SharedArrays = "1"
25-
SimpleTraits = "0.9"
25+
SimpleTraits = "0.9.1"
2626
SparseArrays = "1"
2727
Statistics = "1"
2828
julia = "1.10"

0 commit comments

Comments
 (0)