Skip to content

Commit

Permalink
Add tests for OSX and x86
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed Oct 27, 2024
1 parent 246f862 commit d6d7b97
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ jobs:
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
arch:
- x64
- x86
exclude:
- os: macOS-latest
arch: x86
include:
- version: '1.9'
allow_failure: false
Expand Down
2 changes: 1 addition & 1 deletion src/channel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ $(TYPEDSIGNATURES)
Sends an exit status in reponse to an exec request. Wrapper around
[`lib.ssh_channel_request_send_exit_status()`](@ref).
"""
function channel_request_send_exit_status(sshchan::SshChannel, status::Int)
function channel_request_send_exit_status(sshchan::SshChannel, status::Integer)
if !isopen(sshchan)
throw(ArgumentError("SshChannel has been closed, cannot send exit status"))
end
Expand Down

0 comments on commit d6d7b97

Please sign in to comment.