Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
29 changes: 23 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,45 @@ jobs:
# Parts of this package depend on Pkg internals.
# Because Pkg internals are allowed to change between Julia minor versions,
# we should run CI on each minor version of Julia that we want to support.
# But it's fine to just run these with Linux, as not to make the matrix too
# big. Also, Julia 1.4.2 does not work on the macos-latest runner for some
# reason, failing with a linking error, so that also sidesteps that issue.
- '1.3'
- '1.4'
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
- '1' # automatically expands to the latest stable 1.x release
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
# We still want to run CI on Windows and MacOS for some Julia versions, so
# so doing that for nightly and the latest release.
include:
- os: macOS-latest
version: '1'
arch: x64
- os: windows-latest
version: '1'
arch: x64
- os: macOS-latest
version: 'nightly'
arch: x64
- os: windows-latest
version: 'nightly'
arch: x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
Expand All @@ -57,6 +74,6 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v5
with:
files: lcov.info
Loading