Skip to content

Commit

Permalink
Fix interface andci
Browse files Browse the repository at this point in the history
  • Loading branch information
giopaglia committed Oct 28, 2024
1 parent 4878ce4 commit 33fb4be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
freebsd_instance:
image_family: freebsd-14-0
image_family: freebsd-14-1
task:
name: FreeBSD
artifacts_cache:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Julia 1.9.0
- name: Set up Julia 1.9
uses: julia-actions/setup-julia@v1
with:
version: "1.9.0"
version: "1.9"
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
Expand Down
9 changes: 9 additions & 0 deletions src/SoleBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ export moving_window, movingwindow
Abstract supertype for all datasets.
# Interface
- [`concatdatasets`](@ref)
- [`instances`](@ref)
- [`ninstances`](@ref)
- [`eachinstance`](@ref)
# Utility functions
- [`slicedataset`](@ref)
See also [`ninstances`](@ref).
"""
abstract type AbstractDataset end
Expand Down

0 comments on commit 33fb4be

Please sign in to comment.