Skip to content

Commit

Permalink
Merge pull request #55 from JamesWrigley/32bit-support
Browse files Browse the repository at this point in the history
Fix 32 bit support
  • Loading branch information
JamesWrigley authored Sep 9, 2024
2 parents 351d0d8 + d1e21cf commit ae40377
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- { os: ubuntu-latest, version: '1.6', arch: x64}
- { os: ubuntu-latest, version: '^1.7.0-0', arch: x64}
- { os: ubuntu-latest, version: 'nightly', arch: x64}
- { os: ubuntu-latest, version: '1', arch: x86 }
- { os: windows-latest, version: '1', arch: x64}
- { os: macOS-latest, version: '1', arch: x64}

Expand Down
2 changes: 1 addition & 1 deletion src/ReTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,7 @@ function fetchtests((mod, pat), verbose, module_header, maxidw; static, strict,
descwidth = 0
hasbroken = false

id = 1
id = Int64(1)
warned = Ref(false)

for ts in tests
Expand Down

0 comments on commit ae40377

Please sign in to comment.