Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/codecov/codecov-…
Browse files Browse the repository at this point in the history
…action-4
  • Loading branch information
palday committed Apr 4, 2024
2 parents c711d71 + 7037422 commit 72f1753
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
experimental: false
R: 'release'
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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
Expand Down
4 changes: 2 additions & 2 deletions test/convert/categorical.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using CategoricalArrays

# CategoricalArrays
for ord in (true, false)
v = CategoricalArray(repeat(["b", "a"], inner = 5), ordered=ord)
local v = CategoricalArray(repeat(["b", "a"], inner = 5), ordered=ord)
v2 = rcopy(CategoricalArray, RObject(v))
@test isequal(v2, v)
@test v2 isa CategoricalVector{String}
Expand All @@ -16,7 +16,7 @@ end
a = Array{Union{String, Missing}}(repeat(["b", "a"], inner = 5))
a[repeat([true, false], outer = 5)] .= missing
for ord in (true, false)
v = CategoricalArray(a, ordered=ord)
local v = CategoricalArray(a, ordered=ord)
v2 = rcopy(CategoricalArray, RObject(v))
@test isequal(v2, v)
@test v2 isa CategoricalVector{Union{String,Missing}}
Expand Down

0 comments on commit 72f1753

Please sign in to comment.