Skip to content

Commit 74051f4

Browse files
authored
[CI] Some fixes to GitHub Actions setup (#15)
1 parent b1ffb92 commit 74051f4

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/dependabot.yml

+7
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/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ on:
1111
jobs:
1212
test:
1313
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
14+
timeout-minutes: 10
1415
runs-on: ${{ matrix.os }}
1516
strategy:
17+
fail-fast: false
1618
matrix:
1719
version:
1820
- '1.6'
@@ -26,11 +28,11 @@ jobs:
2628
- os: macOS-latest
2729
version: '1'
2830
steps:
29-
- uses: actions/checkout@v3
30-
- uses: julia-actions/setup-julia@v1
31+
- uses: actions/checkout@v4
32+
- uses: julia-actions/setup-julia@v2
3133
with:
3234
version: ${{ matrix.version }}
33-
- uses: julia-actions/cache@v1
35+
- uses: julia-actions/cache@v2
3436
- uses: julia-actions/julia-buildpkg@v1
3537
- uses: julia-actions/julia-runtest@v1
3638
- uses: julia-actions/julia-processcoverage@v1

0 commit comments

Comments
 (0)