Skip to content

Commit 7e1aa76

Browse files
committed
add Downgrade workflow run
1 parent 60f8332 commit 7e1aa76

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

.github/workflows/Downgrade.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Downgrade
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
paths-ignore:
7+
- 'docs/**'
8+
push:
9+
branches:
10+
- main
11+
paths-ignore:
12+
- 'docs/**'
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
version:
19+
- '1.9.0'
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: julia-actions/setup-julia@v1
23+
with:
24+
version: ${{ matrix.version }}
25+
- uses: cjdoris/julia-downgrade-compat-action@v1
26+
with:
27+
skip: Pkg,TOML
28+
- uses: julia-actions/julia-buildpkg@v1
29+
- uses: julia-actions/julia-runtest@v1

Project.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ CellListMap = "0.8.16"
3030
Chemfiles = "0.9, 0.10"
3131
ChunkSplitters = "2.1"
3232
DelimitedFiles = "1.9"
33-
DocStringExtensions = "0.8, 0.9"
34-
Documenter = "1"
33+
DocStringExtensions = "0.9"
34+
Documenter = "1.3"
3535
FortranFiles = "0.6"
3636
JSON3 = "1"
3737
LinearAlgebra = "1.9"
38-
PDBTools = "1.1"
38+
PDBTools = "1.2"
3939
PrecompileTools = "1"
4040
Printf = "1.9"
4141
ProgressMeter = "1.9"

0 commit comments

Comments
 (0)