Skip to content

Commit 38707f7

Browse files
committed
Automated commit made by MassInstallAction.jl
1 parent 964bef5 commit 38707f7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
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

0 commit comments

Comments
 (0)