File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 11name : CI
22on :
3- - push
4- - pull_request
3+ create :
4+ tags :
5+ push :
6+ branches :
7+ - master
8+ pull_request :
9+ schedule :
10+ - cron : ' 20 00 1 * *'
11+
512jobs :
613 test :
714 name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1522 - ' nightly'
1623 os :
1724 - ubuntu-latest
25+ - macos-latest
26+ - windows-latest
1827 arch :
1928 - x64
2029 steps :
Original file line number Diff line number Diff line change 1818 @test size (sv) == (3 , 4 , 2 )
1919 @test collect (sv) == cat (A, B; dims= 3 )
2020
21- sv = @inferred StackView ((A, B))
21+ sv = if VERSION >= v " 1.2.0"
22+ @inferred StackView ((A, B))
23+ else
24+ StackView ((A, B))
25+ end
2226 @test size (sv) == (3 , 4 , 2 )
2327 @test collect (sv) == cat (A, B; dims= 3 )
2428
You can’t perform that action at this time.
0 commit comments