Skip to content

Commit

Permalink
Bump julia-actions/setup-julia from 1 to 2 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Apr 8, 2024
1 parent d195138 commit ce05c1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit ce05c1d

Please sign in to comment.