Skip to content

Commit 66893f4

Browse files
authored
[CI] Install dependabot, update setup-julia, test Julia v1.11 (#7)
1 parent 2e865dd commit 66893f4

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

.github/workflows/UnitTests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,21 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os:
23-
- macos-latest
24-
- ubuntu-latest
25-
- windows-latest
2622
julia_version:
23+
- "~1.11.0-0"
2724
- "nightly"
2825
julia_arch:
2926
- x64
27+
os:
28+
- ubuntu-latest
29+
- macos-latest
30+
- windows-latest
3031

3132
runs-on: ${{ matrix.os }}
3233

3334
steps:
3435
- uses: actions/checkout@v4
35-
- uses: julia-actions/setup-julia@v1
36+
- uses: julia-actions/setup-julia@v2
3637
with:
3738
arch: ${{ matrix.julia_arch }}
3839
version: ${{ matrix.julia_version }}

0 commit comments

Comments
 (0)