Skip to content

Commit

Permalink
Test with Julia 1.5.0-beta1 (#1)
Browse files Browse the repository at this point in the history
* Test with Julia 1.5

Also, avoid testing with all combinations.

* Test with Julia 1.5.0-beta1

* Use more precise VERSION bound to run extra tests with 1.5.0-beta1
  • Loading branch information
tkf authored May 30, 2020
1 parent ad0e07d commit 8e07cdc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,20 @@ jobs:
version:
- '1.0'
- '1.4'
- '1.5.0-beta1'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
exclude:
# See https://github.com/marketplace/actions/setup-julia-environment
- {os: 'macOS-latest', version: '1.4'}
- {os: 'macOS-latest', version: 'nightly'}
- {os: 'windows-latest', version: '1.4'}
- {os: 'windows-latest', version: 'nightly'}
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ using Test
opcompose(inv, tuple)
end

if VERSION >= v"1.5" # TODO: remove this once Compact adds it
if VERSION >= v"1.5.0-DEV.56" # TODO: remove this once Compact adds it
@testset "unary" begin
@test (tuple) === compose(tuple) === var"⨟"(tuple) === opcompose(tuple) === tuple
end
end # if

if VERSION >= v"1.5"
if VERSION >= v"1.5.0-DEV.302" # for ⨟
include("test_julia15.jl")
end

Expand Down

0 comments on commit 8e07cdc

Please sign in to comment.