Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump julia-actions/setup-julia from 1 to 2 #84

Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v1.5.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- shell: julia --color=yes {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 40
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v1.5.2
Expand Down
4 changes: 2 additions & 2 deletions src/forest.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"Supertype for random forests modes: classification or regression."
abstract type Algorithm end

"Supertype for leafs: classification or regression."
"Supertype for leaves: classification or regression."
abstract type Leaf end

"""
Expand All @@ -14,7 +14,7 @@ classification, namely as classification with only one class.

!!! note
Vectors of one element are not as performant as scalars, but the
alternative here is to have two different types of leafs, which
alternative here is to have two different types of leaves, which
results in different types of trees also, which basically
requires most functions then to become parametric; especially
in `src/rules.jl`.
Expand Down
Loading