Skip to content

Commit f67ff96

Browse files
authored
Merge pull request #89 from JuliaGraphs/massinstallaction/set-up-Downgrade
MassInstallAction: Install the Downgrade workflow on this repository
2 parents 25160b2 + df5de3d commit f67ff96

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
1616
NetworkLayoutGraphsExt = "Graphs"
1717

1818
[compat]
19-
GeometryBasics = "0.4, 0.5"
19+
GeometryBasics = "0.5"
2020
Graphs = "1"
2121
Requires = "1"
2222
StableRNGs = "1.0.2"

0 commit comments

Comments
 (0)