Skip to content

Commit e064515

Browse files
committed
CI: add Julia v1.7 and fix random seeds in tests (fix #42)
1 parent 33c4b1b commit e064515

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/CI.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
- { os: ubuntu-latest, version: '1.3', arch: x64}
2222
- { os: ubuntu-latest, version: '1.4', arch: x64}
2323
- { os: ubuntu-latest, version: '1.5', arch: x64}
24-
- { os: ubuntu-latest, version: '^1.6.0-0', arch: x64}
24+
- { os: ubuntu-latest, version: '1.6', arch: x64}
25+
- { os: ubuntu-latest, version: '^1.7.0-0', arch: x64}
2526
- { os: ubuntu-latest, version: 'nightly', arch: x64}
2627
- { os: windows-latest, version: '1', arch: x64}
2728
- { os: macOS-latest, version: '1', arch: x64}

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ end
869869

870870
@chapter MiscSeed begin
871871
rands = VERSION < v"1.7-" ? [0x24ae, 0x837e] :
872-
[0x1f33, 0x415f]
872+
[0x12c8, 0x0093]
873873
MiscSeed.runtests(verbose=0, seed=1)
874874
@test MiscSeed.RAND1 === MiscSeed.RAND2 === rands[1]
875875
MiscSeed.runtests(verbose=0, seed=2)

0 commit comments

Comments
 (0)