diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml new file mode 100644 index 00000000..e3a2b802 --- /dev/null +++ b/.github/workflows/downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: [master, main] + paths-ignore: + - 'docs/**' + push: + branches: [master, main] + paths-ignore: + - 'docs/**' +env: + PYTHON: ~ +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1.10'] + steps: + - uses: actions/checkout@v5 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: julia-actions/julia-downgrade-compat@v2 + with: + skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra + - uses: julia-actions/cache@v2 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 diff --git a/Project.toml b/Project.toml index 6cf7f38c..a5a3112e 100644 --- a/Project.toml +++ b/Project.toml @@ -17,12 +17,12 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" [compat] ArnoldiMethod = "0.4" Distributed = "1" -DataStructures = "0.17, 0.18, 0.19" +DataStructures = "0.18, 0.19" Inflate = "0.1.3" LinearAlgebra = "1" Random = "1" SharedArrays = "1" -SimpleTraits = "0.9" +SimpleTraits = "0.9.1" SparseArrays = "1" Statistics = "1" julia = "1.10" \ No newline at end of file